Templates
Starter templates for project, task, and user AEP packs.
Project template
{
"intent": "Deliver repository changes safely and predictably.",
"constraints": [
"Preserve existing behavior unless explicitly changed",
"Do not commit secrets"
],
"workflow": [
"Inspect current code and runtime errors",
"Implement focused edits",
"Run checks and verify routes/tests",
"Summarize outcomes and remaining risks"
],
"success_checks": [
"No new type or runtime errors",
"Requested behavior works end-to-end"
]
}Task template
{
"intent": "Implement one scoped feature request.",
"constraints": ["Small, reviewable diffs", "No unrelated refactors"],
"workflow": ["Reproduce issue", "Patch", "Verify", "Document"],
"failure_traps": ["Changing unrelated files", "Skipping validation"],
"success_checks": ["Feature works", "No regressions in touched area"]
}User template
{
"preferences": [
"Use concise explanations",
"Prefer practical examples over theory"
]
}Last updated on