ai-engineering-kit 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +109 -56
  3. package/package.json +1 -1
  4. package/template/agents/claude-code.CLAUDE.md +3 -3
  5. package/template/agents/codex.AGENTS.md +3 -3
  6. package/template/skills/core-workflow/{kickoff → brainstorm}/SKILL.md +2 -2
  7. package/template/skills/core-workflow/setup-foundations/SKILL.md +3 -3
  8. package/template/skills/engineering/{grill-with-docs → discovery}/SKILL.md +2 -2
  9. package/template/skills/engineering/improve-codebase-architecture/SKILL.md +2 -2
  10. package/template/skills/engineering/setup-matt-pocock-skills/SKILL.md +0 -121
  11. package/template/skills/engineering/setup-matt-pocock-skills/domain.md +0 -51
  12. package/template/skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md +0 -22
  13. package/template/skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md +0 -23
  14. package/template/skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md +0 -19
  15. package/template/skills/engineering/setup-matt-pocock-skills/triage-labels.md +0 -15
  16. package/template/skills/engineering/tdd/SKILL.md +0 -109
  17. package/template/skills/engineering/tdd/deep-modules.md +0 -33
  18. package/template/skills/engineering/tdd/interface-design.md +0 -31
  19. package/template/skills/engineering/tdd/mocking.md +0 -59
  20. package/template/skills/engineering/tdd/refactoring.md +0 -10
  21. package/template/skills/engineering/tdd/tests.md +0 -61
  22. package/template/skills/engineering/to-issues/SKILL.md +0 -83
  23. package/template/skills/engineering/to-prd/SKILL.md +0 -74
  24. package/template/skills/engineering/triage/AGENT-BRIEF.md +0 -168
  25. package/template/skills/engineering/triage/OUT-OF-SCOPE.md +0 -101
  26. package/template/skills/engineering/triage/SKILL.md +0 -103
  27. package/template/skills/productivity/grill-me/SKILL.md +0 -10
  28. package/template/skills/productivity/write-a-skill/SKILL.md +0 -117
  29. /package/template/skills/engineering/{grill-with-docs → discovery}/ADR-FORMAT.md +0 -0
  30. /package/template/skills/engineering/{grill-with-docs → discovery}/CONTEXT-FORMAT.md +0 -0
@@ -1,101 +0,0 @@
1
- # Out-of-Scope Knowledge Base
2
-
3
- The `.out-of-scope/` directory in a repo stores persistent records of rejected feature requests. It serves two purposes:
4
-
5
- 1. **Institutional memory** — why a feature was rejected, so the reasoning isn't lost when the issue is closed
6
- 2. **Deduplication** — when a new issue comes in that matches a prior rejection, the skill can surface the previous decision instead of re-litigating it
7
-
8
- ## Directory structure
9
-
10
- ```
11
- .out-of-scope/
12
- ├── dark-mode.md
13
- ├── plugin-system.md
14
- └── graphql-api.md
15
- ```
16
-
17
- One file per **concept**, not per issue. Multiple issues requesting the same thing are grouped under one file.
18
-
19
- ## File format
20
-
21
- The file should be written in a relaxed, readable style — more like a short design document than a database entry. Use paragraphs, code samples, and examples to make the reasoning clear and useful to someone encountering it for the first time.
22
-
23
- ```markdown
24
- # Dark Mode
25
-
26
- This project does not support dark mode or user-facing theming.
27
-
28
- ## Why this is out of scope
29
-
30
- The rendering pipeline assumes a single color palette defined in
31
- `ThemeConfig`. Supporting multiple themes would require:
32
-
33
- - A theme context provider wrapping the entire component tree
34
- - Per-component theme-aware style resolution
35
- - A persistence layer for user theme preferences
36
-
37
- This is a significant architectural change that doesn't align with the
38
- project's focus on content authoring. Theming is a concern for downstream
39
- consumers who embed or redistribute the output.
40
-
41
- ```ts
42
- // The current ThemeConfig interface is not designed for runtime switching:
43
- interface ThemeConfig {
44
- colors: ColorPalette; // single palette, resolved at build time
45
- fonts: FontStack;
46
- }
47
- ```
48
-
49
- ## Prior requests
50
-
51
- - #42 — "Add dark mode support"
52
- - #87 — "Night theme for accessibility"
53
- - #134 — "Dark theme option"
54
- ```
55
-
56
- ### Naming the file
57
-
58
- Use a short, descriptive kebab-case name for the concept: `dark-mode.md`, `plugin-system.md`, `graphql-api.md`. The name should be recognizable enough that someone browsing the directory understands what was rejected without opening the file.
59
-
60
- ### Writing the reason
61
-
62
- The reason should be substantive — not "we don't want this" but why. Good reasons reference:
63
-
64
- - Project scope or philosophy ("This project focuses on X; theming is a downstream concern")
65
- - Technical constraints ("Supporting this would require Y, which conflicts with our Z architecture")
66
- - Strategic decisions ("We chose to use A instead of B because...")
67
-
68
- The reason should be durable. Avoid referencing temporary circumstances ("we're too busy right now") — those aren't real rejections, they're deferrals.
69
-
70
- ## When to check `.out-of-scope/`
71
-
72
- During triage (Step 1: Gather context), read all files in `.out-of-scope/`. When evaluating a new issue:
73
-
74
- - Check if the request matches an existing out-of-scope concept
75
- - Matching is by concept similarity, not keyword — "night theme" matches `dark-mode.md`
76
- - If there's a match, surface it to the maintainer: "This is similar to `.out-of-scope/dark-mode.md` — we rejected this before because [reason]. Do you still feel the same way?"
77
-
78
- The maintainer may:
79
-
80
- - **Confirm** — the new issue gets added to the existing file's "Prior requests" list, then closed
81
- - **Reconsider** — the out-of-scope file gets deleted or updated, and the issue proceeds through normal triage
82
- - **Disagree** — the issues are related but distinct, proceed with normal triage
83
-
84
- ## When to write to `.out-of-scope/`
85
-
86
- Only when an **enhancement** (not a bug) is rejected as `wontfix`. The flow:
87
-
88
- 1. Maintainer decides a feature request is out of scope
89
- 2. Check if a matching `.out-of-scope/` file already exists
90
- 3. If yes: append the new issue to the "Prior requests" list
91
- 4. If no: create a new file with the concept name, decision, reason, and first prior request
92
- 5. Post a comment on the issue explaining the decision and mentioning the `.out-of-scope/` file
93
- 6. Close the issue with the `wontfix` label
94
-
95
- ## Updating or removing out-of-scope files
96
-
97
- If the maintainer changes their mind about a previously rejected concept:
98
-
99
- - Delete the `.out-of-scope/` file
100
- - The skill does not need to reopen old issues — they're historical records
101
- - The new issue that triggered the reconsideration proceeds through normal triage
@@ -1,103 +0,0 @@
1
- ---
2
- name: triage
3
- description: Triage issues through a state machine driven by triage roles. Use when user wants to create an issue, triage issues, review incoming bugs or feature requests, prepare issues for an AFK agent, or manage issue workflow.
4
- ---
5
-
6
- # Triage
7
-
8
- Move issues on the project issue tracker through a small state machine of triage roles.
9
-
10
- Every comment or issue posted to the issue tracker during triage **must** start with this disclaimer:
11
-
12
- ```
13
- > *This was generated by AI during triage.*
14
- ```
15
-
16
- ## Reference docs
17
-
18
- - [AGENT-BRIEF.md](AGENT-BRIEF.md) — how to write durable agent briefs
19
- - [OUT-OF-SCOPE.md](OUT-OF-SCOPE.md) — how the `.out-of-scope/` knowledge base works
20
-
21
- ## Roles
22
-
23
- Two **category** roles:
24
-
25
- - `bug` — something is broken
26
- - `enhancement` — new feature or improvement
27
-
28
- Five **state** roles:
29
-
30
- - `needs-triage` — maintainer needs to evaluate
31
- - `needs-info` — waiting on reporter for more information
32
- - `ready-for-agent` — fully specified, ready for an AFK agent
33
- - `ready-for-human` — needs human implementation
34
- - `wontfix` — will not be actioned
35
-
36
- Every triaged issue should carry exactly one category role and one state role. If state roles conflict, flag it and ask the maintainer before doing anything else.
37
-
38
- These are canonical role names — the actual label strings used in the issue tracker may differ. The mapping should have been provided to you - run `/setup-matt-pocock-skills` if not.
39
-
40
- State transitions: an unlabeled issue normally goes to `needs-triage` first; from there it moves to `needs-info`, `ready-for-agent`, `ready-for-human`, or `wontfix`. `needs-info` returns to `needs-triage` once the reporter replies. The maintainer can override at any time — flag transitions that look unusual and ask before proceeding.
41
-
42
- ## Invocation
43
-
44
- The maintainer invokes `/triage` and describes what they want in natural language. Interpret the request and act. Examples:
45
-
46
- - "Show me anything that needs my attention"
47
- - "Let's look at #42"
48
- - "Move #42 to ready-for-agent"
49
- - "What's ready for agents to pick up?"
50
-
51
- ## Show what needs attention
52
-
53
- Query the issue tracker and present three buckets, oldest first:
54
-
55
- 1. **Unlabeled** — never triaged.
56
- 2. **`needs-triage`** — evaluation in progress.
57
- 3. **`needs-info` with reporter activity since the last triage notes** — needs re-evaluation.
58
-
59
- Show counts and a one-line summary per issue. Let the maintainer pick.
60
-
61
- ## Triage a specific issue
62
-
63
- 1. **Gather context.** Read the full issue (body, comments, labels, reporter, dates). Parse any prior triage notes so you don't re-ask resolved questions. Explore the codebase using the project's domain glossary, respecting ADRs in the area. Read `.out-of-scope/*.md` and surface any prior rejection that resembles this issue.
64
-
65
- 2. **Recommend.** Tell the maintainer your category and state recommendation with reasoning, plus a brief codebase summary relevant to the issue. Wait for direction.
66
-
67
- 3. **Reproduce (bugs only).** Before any grilling, attempt reproduction: read the reporter's steps, trace the relevant code, run tests or commands. Report what happened — successful repro with code path, failed repro, or insufficient detail (a strong `needs-info` signal). A confirmed repro makes a much stronger agent brief.
68
-
69
- 4. **Grill (if needed).** If the issue needs fleshing out, run a `/grill-with-docs` session.
70
-
71
- 5. **Apply the outcome:**
72
- - `ready-for-agent` — post an agent brief comment ([AGENT-BRIEF.md](AGENT-BRIEF.md)).
73
- - `ready-for-human` — same structure as an agent brief, but note why it can't be delegated (judgment calls, external access, design decisions, manual testing).
74
- - `needs-info` — post triage notes (template below).
75
- - `wontfix` (bug) — polite explanation, then close.
76
- - `wontfix` (enhancement) — write to `.out-of-scope/`, link to it from a comment, then close ([OUT-OF-SCOPE.md](OUT-OF-SCOPE.md)).
77
- - `needs-triage` — apply the role. Optional comment if there's partial progress.
78
-
79
- ## Quick state override
80
-
81
- If the maintainer says "move #42 to ready-for-agent", trust them and apply the role directly. Confirm what you're about to do (role changes, comment, close), then act. Skip grilling. If moving to `ready-for-agent` without a grilling session, ask whether they want to write an agent brief.
82
-
83
- ## Needs-info template
84
-
85
- ```markdown
86
- ## Triage Notes
87
-
88
- **What we've established so far:**
89
-
90
- - point 1
91
- - point 2
92
-
93
- **What we still need from you (@reporter):**
94
-
95
- - question 1
96
- - question 2
97
- ```
98
-
99
- Capture everything resolved during grilling under "established so far" so the work isn't lost. Questions must be specific and actionable, not "please provide more info".
100
-
101
- ## Resuming a previous session
102
-
103
- If prior triage notes exist on the issue, read them, check whether the reporter has answered any outstanding questions, and present an updated picture before continuing. Don't re-ask resolved questions.
@@ -1,10 +0,0 @@
1
- ---
2
- name: grill-me
3
- description: Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
4
- ---
5
-
6
- Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
7
-
8
- Ask the questions one at a time.
9
-
10
- If a question can be answered by exploring the codebase, explore the codebase instead.
@@ -1,117 +0,0 @@
1
- ---
2
- name: write-a-skill
3
- description: Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill.
4
- ---
5
-
6
- # Writing Skills
7
-
8
- ## Process
9
-
10
- 1. **Gather requirements** - ask user about:
11
- - What task/domain does the skill cover?
12
- - What specific use cases should it handle?
13
- - Does it need executable scripts or just instructions?
14
- - Any reference materials to include?
15
-
16
- 2. **Draft the skill** - create:
17
- - SKILL.md with concise instructions
18
- - Additional reference files if content exceeds 500 lines
19
- - Utility scripts if deterministic operations needed
20
-
21
- 3. **Review with user** - present draft and ask:
22
- - Does this cover your use cases?
23
- - Anything missing or unclear?
24
- - Should any section be more/less detailed?
25
-
26
- ## Skill Structure
27
-
28
- ```
29
- skill-name/
30
- ├── SKILL.md # Main instructions (required)
31
- ├── REFERENCE.md # Detailed docs (if needed)
32
- ├── EXAMPLES.md # Usage examples (if needed)
33
- └── scripts/ # Utility scripts (if needed)
34
- └── helper.js
35
- ```
36
-
37
- ## SKILL.md Template
38
-
39
- ```md
40
- ---
41
- name: skill-name
42
- description: Brief description of capability. Use when [specific triggers].
43
- ---
44
-
45
- # Skill Name
46
-
47
- ## Quick start
48
-
49
- [Minimal working example]
50
-
51
- ## Workflows
52
-
53
- [Step-by-step processes with checklists for complex tasks]
54
-
55
- ## Advanced features
56
-
57
- [Link to separate files: See [REFERENCE.md](REFERENCE.md)]
58
- ```
59
-
60
- ## Description Requirements
61
-
62
- The description is **the only thing your agent sees** when deciding which skill to load. It's surfaced in the system prompt alongside all other installed skills. Your agent reads these descriptions and picks the relevant skill based on the user's request.
63
-
64
- **Goal**: Give your agent just enough info to know:
65
-
66
- 1. What capability this skill provides
67
- 2. When/why to trigger it (specific keywords, contexts, file types)
68
-
69
- **Format**:
70
-
71
- - Max 1024 chars
72
- - Write in third person
73
- - First sentence: what it does
74
- - Second sentence: "Use when [specific triggers]"
75
-
76
- **Good example**:
77
-
78
- ```
79
- Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when user mentions PDFs, forms, or document extraction.
80
- ```
81
-
82
- **Bad example**:
83
-
84
- ```
85
- Helps with documents.
86
- ```
87
-
88
- The bad example gives your agent no way to distinguish this from other document skills.
89
-
90
- ## When to Add Scripts
91
-
92
- Add utility scripts when:
93
-
94
- - Operation is deterministic (validation, formatting)
95
- - Same code would be generated repeatedly
96
- - Errors need explicit handling
97
-
98
- Scripts save tokens and improve reliability vs generated code.
99
-
100
- ## When to Split Files
101
-
102
- Split into separate files when:
103
-
104
- - SKILL.md exceeds 100 lines
105
- - Content has distinct domains (finance vs sales schemas)
106
- - Advanced features are rarely needed
107
-
108
- ## Review Checklist
109
-
110
- After drafting, verify:
111
-
112
- - [ ] Description includes triggers ("Use when...")
113
- - [ ] SKILL.md under 100 lines
114
- - [ ] No time-sensitive info
115
- - [ ] Consistent terminology
116
- - [ ] Concrete examples included
117
- - [ ] References one level deep