Skip to content

Templates

Ydun AI Workflow provides six core template files. Together, they give AI assistants full project context, a validation workflow, and session continuity.

TemplateLinesPurpose
AGENTS.md~600+Primary AI guidelines — principles, project context, documentation standards
CLAUDE.md~125Quick-reference commands and rules for Claude Code
JIMMYS-WORKFLOW.md~870Validation checkpoint system v2.1
STATUS.md~100+Phase tracking, session history, health indicators
NEXT-SESSION-START-HERE.md~100+Session orientation — what to do next
JIMMYS-WORKFLOW-TEMPLATE.md~300Shorter version for embedding in docs directories
FilePurpose
init-project.md14-step initialization checklist
AGENTS-TEMPLATE-GUIDE.mdDetailed guide for filling every AGENTS.md section
DOCUMENTATION-STANDARDS.mdAI-optimized documentation principles (7 principles, anti-patterns, examples)
AGENTS.md ← AI reads this first (project context + principles)
CLAUDE.md ← Quick reference (commands, critical rules)
JIMMYS-WORKFLOW.md ← Validation system (PRE-FLIGHT → VALIDATE → CHECKPOINT)
STATUS.md ← Where the project is (phases, health, decisions)
NEXT-SESSION ← What to do next (orientation for new sessions)

You need at least AGENTS.md and CLAUDE.md. Everything else adds value but is optional.

Setup levelFilesBenefit
MinimumAGENTS.md + CLAUDE.mdAI understands your project
Standard+ JIMMYS-WORKFLOW.mdAI validates its own work
Full+ STATUS.md + NEXT-SESSIONSession continuity across conversations

All templates live in the templates/ directory:

templates/
├── core/ # Core project files
│ ├── AGENTS.md.template
│ ├── CLAUDE.md.template
│ ├── JIMMYS-WORKFLOW.md
│ ├── JIMMYS-WORKFLOW-TEMPLATE.md
│ ├── STATUS.md.template
│ └── NEXT-SESSION-START-HERE.md.template
├── init/ # Initialization guides
│ ├── init-project.md
│ └── AGENTS-TEMPLATE-GUIDE.md
├── docs/ # Documentation standards
│ ├── DOCUMENTATION-STANDARDS.md
│ ├── AI-DRIVEN-SEO-BEST-PRACTICES.md
│ └── doc-components/
├── tech/ # Tech-specific templates
│ ├── cardano/
│ └── solidity/
└── tools/ # Shell scripts
├── audit-project.sh
├── check-version.sh
└── sync-templates.sh