4.1 KiB
AGENTS.md
Canonical instructions for AI coding tools (Claude Code, OpenCode, Codex) working with this Hugo blog. This is the single source of truth; CLAUDE.md imports it.
Project Info
- Type: Hugo static site with Vietnamese tech content
- Theme: hugo-theme-stack
- Post content language: Vietnamese (with common English tech words)
- User communication: English by default; use another language only when the user explicitly requests it
- Timezone: Asia/Ho_Chi_Minh (UTC+7)
Vietnamese language requirements apply only to prose written into Hugo posts, including summaries. Preserve article titles and image labels in their original source language, wording, capitalization, and punctuation; translate them only when the user explicitly asks. Keep questions, status updates, reports, and final responses in English unless the user asks for another language.
Directory Structure
content/post/
└── YYYY/
└── MM/
└── DD/
└── index.md
Starting Local Development Server
hugo server -D
The site will be available at http://localhost:1313
Options:
-Dor--buildDrafts: Include draft content-For--buildFuture: Include future-dated content--disableFastRender: Full re-render on all changes
Shared Engine
All portable newsletter scripts live in scripts/newsletter/ and are invoked from the repo root with plain Node (stdlib only, no deps):
node scripts/newsletter/add-url.js "<url>" # classify + dedup a URL → JSON route
node scripts/newsletter/find-newsletter-number.js # next newsletter number
node scripts/newsletter/list-existing-tags.js # existing tag frequencies
node scripts/newsletter/detect-image-source.js "<url>" # detect Substack image + uuid
node scripts/newsletter/find-substack-post.js --uuid <uuid>
node scripts/newsletter/fetch-via-defuddle.js "<url>" # fallback fetch (defuddle proxy)
These are shared by all three tools — no tool-specific copies.
Newsletter Workflow Routing
The newsletter workflow adds URLs (articles, YouTube videos, images) to today's newsletter post and manages tags. How it surfaces depends on the tool:
- Claude Code / OpenCode — invoke skills (both read
.claude/skills/<name>/SKILL.mdnatively):mt-add-url— meta dispatcher: classifies each URL, auto-invokes the right handler. Default entry for adding URLs.mt-add-post— article/blog URL → newsletter main contentmt-add-video— YouTube link → Bonus → Videosmt-add-image— image → Bonus → Images (labels Substack images via source-post lookup)mt-add-tags— add/update tags in post frontmattermt-webfetch— fallback web fetcher (defuddle proxy); use only when built-in WebFetch is blocked
- Codex — discovers the repository-scoped adapters in
.agents/skills/. Ask it to add a URL for implicit routing or invoke$mt-add-urlexplicitly.
mt-add-url dispatches article / youtube / image; other types (direct video files, documents, unknown) prompt the user to add or extend a handler.
Canonical skill implementations live in .claude/skills/; Codex adapters in .agents/skills/ reference them so behavior stays in one place.
Using Codex
Codex automatically discovers checked-in skills from .agents/skills/. No install or copy step is required. Start Codex at the repository root, then either describe the task normally or explicitly mention a skill:
$mt-add-url <url>— classify and dispatch one or more URLs$mt-add-post <url>— add an article directly$mt-add-video <url>— add a YouTube video directly$mt-add-image <url>— add an image directly$mt-add-tags [post]— add or update tags$mt-webfetch <url>— fallback after the built-in fetch fails
Codex detects skill changes automatically; restart Codex if an update does not appear.
Git Workflow Rules
Before any git commit, check all staged content/post/*/index.md files for minimal tags. If any have only ["AI-Assisted"] or empty tags, run the mt-add-tags workflow on them first before committing.