Reference
Reference: agentic-coding template
Reference: agentic-coding template
Source
- Repository: https://github.com/stvlynn/agentic-coding
- Files consulted:
Makefile,CLAUDE.md(the AGENTS.md content),docs/directory layout.
Relevant rule
The template is a language- and framework-agnostic scaffold for agent-driven projects. It prescribes:
- A
Makefilewithcheck,test,lint,format,docs,deploy,helptargets that delegate to the package manager. CLAUDE.md/AGENTS.mdas the entry document, with a documentation map intodocs/{project,frontend,backend,operations,quality,decisions}.- Frontend guidance = Feature-Sliced Design; backend guidance = Domain-Driven Design; imports point downward / inward respectively.
- Forbidden patterns: hardcoded strings, redundant UI copy, duplicated implementations, fallback/bypass logic, and assumptions about hidden requirements.
- Conventional Commits, and a self-evolution rule (update docs in the same change set as the code).
- Planning docs avoid concrete dates and duration estimates; use P0/P1/P2.
Project decision
Makefilekeeps the template targets, delegating to pnpm.AGENTS.mdis the entry doc;CLAUDE.mdis a symlink to it, and.claudeis a symlink to.agents, matching the requestedCLAUDE.md -> AGENTS.mdand.claude -> .agentsconvention.- The
docs/tree mirrors the template's subdomains and addsdocs/reference/for auditable source tracking. docs:check(scripts/docs-check.mjs) enforces that required docs exist and internal links resolve, standing in for the template'sdocs:checktarget.