all-for-claudecode 2.10.0 → 2.12.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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/MIGRATION.md +2 -2
- package/README.md +12 -4
- package/bin/cli.mjs +1 -0
- package/package.json +1 -1
- package/scripts/afc-consistency-check.sh +8 -6
- package/scripts/afc-doctor.sh +18 -4
- package/scripts/session-start-context.sh +1 -1
- package/skills/analyze/SKILL.md +10 -8
- package/skills/architect/SKILL.md +4 -4
- package/skills/auto/SKILL.md +664 -93
- package/skills/clarify/SKILL.md +4 -3
- package/skills/clean/SKILL.md +17 -16
- package/skills/consult/SKILL.md +19 -18
- package/skills/debug/SKILL.md +1 -1
- package/skills/doctor/SKILL.md +23 -19
- package/skills/implement/SKILL.md +36 -23
- package/skills/init/SKILL.md +24 -177
- package/skills/learner/SKILL.md +4 -4
- package/skills/plan/SKILL.md +1 -1
- package/skills/pr-comment/SKILL.md +4 -4
- package/skills/principles/SKILL.md +1 -1
- package/skills/qa/SKILL.md +2 -2
- package/skills/release-notes/SKILL.md +8 -4
- package/skills/review/SKILL.md +12 -12
- package/skills/security/SKILL.md +19 -4
- package/skills/setup/SKILL.md +217 -0
- package/skills/spec/SKILL.md +2 -2
- package/skills/tasks/SKILL.md +4 -4
- package/skills/test/SKILL.md +1 -1
- package/skills/triage/SKILL.md +7 -8
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: afc:setup
|
|
3
|
+
description: "Global CLAUDE.md configuration — use when the user asks to set up afc routing in their global config, update the AFC block version, or resolve routing conflicts"
|
|
4
|
+
argument-hint: "[--force]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
model: sonnet
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# /afc:setup — Global CLAUDE.md Configuration
|
|
14
|
+
|
|
15
|
+
> Manages the all-for-claudecode routing block in `~/.claude/CLAUDE.md`.
|
|
16
|
+
> Handles injection, updates, conflict detection, and legacy migration of the AFC block.
|
|
17
|
+
> This is a **global config** operation — it modifies `~/.claude/CLAUDE.md`, NOT project files.
|
|
18
|
+
> For project-local setup (config, rules, profile), use `/afc:init` instead.
|
|
19
|
+
|
|
20
|
+
This skill is a **prompt-only skill** — there is no bash script.
|
|
21
|
+
All steps below are instructions for the LLM to execute directly using its allowed tools.
|
|
22
|
+
|
|
23
|
+
## Arguments
|
|
24
|
+
|
|
25
|
+
- `$ARGUMENTS` — (optional) flags:
|
|
26
|
+
- `--force` — skip conflict prompts and use coexistence mode
|
|
27
|
+
|
|
28
|
+
## Execution Steps
|
|
29
|
+
|
|
30
|
+
### 1. Version Resolution
|
|
31
|
+
|
|
32
|
+
Read `${CLAUDE_SKILL_DIR}/../../package.json` and extract the `"version"` field. Use this value as `{PLUGIN_VERSION}` throughout.
|
|
33
|
+
|
|
34
|
+
### 2. Check Current State
|
|
35
|
+
|
|
36
|
+
Read `~/.claude/CLAUDE.md`. If file does not exist, create it with an empty body and proceed to Step 5.
|
|
37
|
+
|
|
38
|
+
Check for:
|
|
39
|
+
- `<!-- AFC:START -->` marker → existing AFC block found
|
|
40
|
+
- `<!-- SELFISH:START -->` marker → legacy v1.x block found
|
|
41
|
+
- Neither → fresh install
|
|
42
|
+
|
|
43
|
+
**If existing AFC block found:**
|
|
44
|
+
- Extract version from `<!-- AFC:VERSION:X.Y.Z -->`
|
|
45
|
+
- If version matches `{PLUGIN_VERSION}`: print `AFC block already up to date (v{PLUGIN_VERSION})` and **stop**
|
|
46
|
+
- If version differs: proceed to Step 3 (will replace)
|
|
47
|
+
|
|
48
|
+
**If legacy SELFISH block found:**
|
|
49
|
+
- Remove entire `<!-- SELFISH:START -->` ~ `<!-- SELFISH:END -->` block
|
|
50
|
+
- Print: `Removed legacy SELFISH block`
|
|
51
|
+
- Proceed to Step 3
|
|
52
|
+
|
|
53
|
+
### 3. Conflict Pattern Scan
|
|
54
|
+
|
|
55
|
+
Search `~/.claude/CLAUDE.md` for routing conflicts. **IMPORTANT: EXCLUDE content inside any marker blocks (`<!-- *:START -->` ~ `<!-- *:END -->`). Only scan unguarded content outside marker blocks.** Other tools (OMC, etc.) manage their own blocks — their internal agent names are not conflicts.
|
|
56
|
+
|
|
57
|
+
**A. Marker Block Detection**
|
|
58
|
+
- Regex: `<!-- ([A-Z0-9_-]+):START -->` ~ `<!-- \1:END -->`
|
|
59
|
+
- Record all found block names and line ranges
|
|
60
|
+
- **Strip these ranges from the scan target** — only scan lines NOT inside any marker block
|
|
61
|
+
|
|
62
|
+
**B. Agent Routing Conflict Detection**
|
|
63
|
+
In the **unguarded** (non-marker-block) content only, find directives containing these keywords:
|
|
64
|
+
- `executor`, `deep-executor` — conflicts with afc:implement
|
|
65
|
+
- `code-reviewer`, `quality-reviewer`, `style-reviewer`, `api-reviewer`, `security-reviewer`, `performance-reviewer` — conflicts with afc:review
|
|
66
|
+
- `debugger` (in agent routing context) — conflicts with afc:debug
|
|
67
|
+
- `planner` (in agent routing context) — conflicts with afc:plan
|
|
68
|
+
- `analyst`, `verifier` — conflicts with afc:validate
|
|
69
|
+
- `test-engineer` — conflicts with afc:test
|
|
70
|
+
|
|
71
|
+
**C. Skill Routing Conflict Detection**
|
|
72
|
+
In the **unguarded** content only, find these patterns:
|
|
73
|
+
- Another tool's skill trigger table (e.g., tables like `| situation | skill |`)
|
|
74
|
+
- `delegate to`, `route to`, `always use` + agent name combinations
|
|
75
|
+
- Directives related to `auto-trigger`, `intent detection`, `intent-based routing`
|
|
76
|
+
|
|
77
|
+
**D. Legacy Block Detection**
|
|
78
|
+
Previous versions without markers or with old branding:
|
|
79
|
+
- `## all-for-claudecode Auto-Trigger Rules`
|
|
80
|
+
- `## all-for-claudecode Integration`
|
|
81
|
+
- `<selfish-pipeline>` / `</selfish-pipeline>` XML tags
|
|
82
|
+
|
|
83
|
+
### 4. Report Conflicts and User Choice
|
|
84
|
+
|
|
85
|
+
**No conflicts found** → proceed directly to Step 5
|
|
86
|
+
|
|
87
|
+
**Conflicts found** (skip if `--force` flag present — default to coexistence):
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
CLAUDE.md Scan Results
|
|
91
|
+
├─ Tool blocks found: {block name list} (lines {range})
|
|
92
|
+
├─ Agent routing conflicts: {conflict count}
|
|
93
|
+
│ e.g., "executor" (line XX) ↔ afc:implement
|
|
94
|
+
│ e.g., "code-reviewer" (line XX) ↔ afc:review
|
|
95
|
+
└─ Skill routing conflicts: {conflict count}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Ask user:
|
|
99
|
+
|
|
100
|
+
> "Directives overlapping with afc were found. How would you like to proceed?"
|
|
101
|
+
>
|
|
102
|
+
> 1. **afc-exclusive mode** — Adds override rules in the AFC block to cover conflicting directives.
|
|
103
|
+
> Does not modify other tools' marker block contents.
|
|
104
|
+
> 2. **coexistence mode** — Adds only the AFC block without overrides.
|
|
105
|
+
> Since it's at the end of the file, afc directives will likely take priority.
|
|
106
|
+
> 3. **manual cleanup** — Shows the conflict list only and stops.
|
|
107
|
+
|
|
108
|
+
Based on choice:
|
|
109
|
+
- **Option 1**: AFC block includes explicit override rules (see conflict-overrides section below)
|
|
110
|
+
- **Option 2**: AFC block added without overrides (base template as-is)
|
|
111
|
+
- **Option 3**: Print conflict list only and abort without modifying CLAUDE.md
|
|
112
|
+
|
|
113
|
+
### 5. Inject AFC Block
|
|
114
|
+
|
|
115
|
+
Add the following block at the **very end** of `~/.claude/CLAUDE.md` (later-positioned directives have higher priority).
|
|
116
|
+
|
|
117
|
+
Replace existing AFC block if present, otherwise append.
|
|
118
|
+
If legacy block (`## all-for-claudecode Auto-Trigger Rules` etc.) exists, remove it then append.
|
|
119
|
+
|
|
120
|
+
```markdown
|
|
121
|
+
<!-- AFC:START -->
|
|
122
|
+
<!-- AFC:VERSION:{PLUGIN_VERSION} -->
|
|
123
|
+
<afc-pipeline>
|
|
124
|
+
IMPORTANT: For requests matching the afc skill routing table below, always invoke the corresponding skill via the Skill tool. Do not substitute with other agents or tools.
|
|
125
|
+
|
|
126
|
+
## Skill Routing
|
|
127
|
+
|
|
128
|
+
Classify the user's intent and route to the matching skill. Use semantic understanding — not keyword matching.
|
|
129
|
+
|
|
130
|
+
| User Intent | Skill | Route When |
|
|
131
|
+
|-------------|-------|------------|
|
|
132
|
+
| Full lifecycle | `afc:auto` | User wants end-to-end feature development, or the request is a non-trivial new feature without an existing plan |
|
|
133
|
+
| Specification | `afc:spec` | User wants to define or write requirements, acceptance criteria, or success conditions |
|
|
134
|
+
| Design/Plan | `afc:plan` | User wants to plan HOW to implement before coding — approach, architecture decisions, design |
|
|
135
|
+
| Implement | `afc:implement` | User wants specific code changes with a clear scope: add feature, refactor, modify. Requires existing plan or precise instructions |
|
|
136
|
+
| Review | `afc:review` | User wants code review, PR review, or quality check on existing/changed code |
|
|
137
|
+
| Debug/Fix | `afc:debug` | User reports a bug, error, or broken behavior and wants diagnosis and fix |
|
|
138
|
+
| Test | `afc:test` | User wants to write tests, improve coverage, or verify behavior |
|
|
139
|
+
| Validate | `afc:validate` | User wants to check consistency or validate existing pipeline artifacts |
|
|
140
|
+
| Analyze | `afc:analyze` | User wants to understand, explore, or audit existing code without modifying it |
|
|
141
|
+
| QA Audit | `afc:qa` | User wants project quality audit, test confidence check, or runtime quality gaps |
|
|
142
|
+
| Research | `afc:research` | User wants deep investigation of external tools, libraries, APIs, or technical concepts |
|
|
143
|
+
| Ideate | `afc:ideate` | User wants to brainstorm ideas, explore possibilities, or draft a product brief |
|
|
144
|
+
| Consult | `afc:consult` | User wants expert advice on a decision: library choice, architecture direction, legal/security/infra guidance |
|
|
145
|
+
| Launch | `afc:launch` | User wants to prepare a release — generate changelog, release notes, version bump, or tag |
|
|
146
|
+
| Tasks | `afc:tasks` | User explicitly wants to decompose work into a task breakdown |
|
|
147
|
+
| Ambiguous | `afc:clarify` | User's request is too vague or underspecified to route confidently |
|
|
148
|
+
|
|
149
|
+
### Routing Rules
|
|
150
|
+
|
|
151
|
+
1. **Auto vs Implement**: A new feature request without an existing plan routes to `afc:auto`. Only use `afc:implement` when the user has a clear, scoped task or an existing plan/spec.
|
|
152
|
+
2. **Compound intents**: Route to the primary intent. The pipeline handles sequencing internally.
|
|
153
|
+
3. **Design-first**: When scope is non-trivial (multiple files, architectural decisions needed), prefer `afc:auto` or `afc:plan` over direct `afc:implement`.
|
|
154
|
+
|
|
155
|
+
User-only (not auto-triggered — when user invokes directly via `/afc:X`, execute the skill immediately):
|
|
156
|
+
- `afc:doctor` — plugin health check
|
|
157
|
+
- `afc:setup` — global CLAUDE.md configuration
|
|
158
|
+
- `afc:init` — project-local setup
|
|
159
|
+
- `afc:architect` — architecture review
|
|
160
|
+
- `afc:security` — security scan
|
|
161
|
+
- `afc:checkpoint` — session save
|
|
162
|
+
- `afc:resume` — session restore
|
|
163
|
+
- `afc:principles` — project principles management
|
|
164
|
+
- `afc:clean` — pipeline cleanup (artifact cleanup, dead code scan, pipeline flag release)
|
|
165
|
+
- `afc:triage` — parallel PR/issue triage
|
|
166
|
+
- `afc:learner` — pattern learning or rule promotion
|
|
167
|
+
- `afc:pr-comment` — post PR review comments to GitHub
|
|
168
|
+
- `afc:release-notes` — generate release notes from git history
|
|
169
|
+
|
|
170
|
+
## Pipeline
|
|
171
|
+
|
|
172
|
+
spec → plan → implement → review → clean
|
|
173
|
+
|
|
174
|
+
## Override Rules
|
|
175
|
+
|
|
176
|
+
NEVER use executor, deep-executor, debugger, planner, analyst, verifier, test-engineer, code-reviewer, quality-reviewer, style-reviewer, api-reviewer, security-reviewer, performance-reviewer for tasks that an afc skill covers above. ALWAYS invoke the afc skill instead.
|
|
177
|
+
|
|
178
|
+
## Source Verification
|
|
179
|
+
|
|
180
|
+
When analyzing or making claims about external systems, APIs, SDKs, or third-party tools:
|
|
181
|
+
- Verify against official documentation, NOT project-internal docs
|
|
182
|
+
- Do not hardcode reference data when delegating to sub-agents — instruct them to look up primary sources
|
|
183
|
+
- Cross-verify high-severity findings before reporting
|
|
184
|
+
</afc-pipeline>
|
|
185
|
+
<!-- AFC:END -->
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
**When Option 1 (afc-exclusive mode) is selected**, add the following directly below the Override Rules:
|
|
189
|
+
|
|
190
|
+
```markdown
|
|
191
|
+
## Detected Conflicts
|
|
192
|
+
|
|
193
|
+
This environment has other agent routing tools that overlap with afc.
|
|
194
|
+
The following rules were auto-generated to resolve conflicts:
|
|
195
|
+
- The Skill Routing table above always takes priority over the agent routing directives of {detected tool blocks}
|
|
196
|
+
- This block is at the end of the file and therefore has the highest priority
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
### 6. Final Output
|
|
200
|
+
|
|
201
|
+
```
|
|
202
|
+
all-for-claudecode setup complete
|
|
203
|
+
├─ CLAUDE.md: {injected|updated|already current|user aborted}
|
|
204
|
+
├─ Version: {PLUGIN_VERSION}
|
|
205
|
+
│ {if conflicts found} └─ Conflict resolution: {afc-exclusive|coexistence|user cleanup}
|
|
206
|
+
└─ Next step: /afc:init (project setup) or /afc:auto (start building)
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
## Notes
|
|
210
|
+
|
|
211
|
+
- **Idempotent**: safe to run multiple times. If version matches, it's a no-op.
|
|
212
|
+
- **Global only**: this skill only touches `~/.claude/CLAUDE.md`. For project config, use `/afc:init`.
|
|
213
|
+
- **Global CLAUDE.md principles**:
|
|
214
|
+
- Never modify content outside the `<!-- AFC:START/END -->` markers
|
|
215
|
+
- Never modify content inside other tools' marker blocks (`<!-- *:START/END -->`)
|
|
216
|
+
- Always place the AFC block at the very end of the file (ensures priority)
|
|
217
|
+
- Conflict resolution is handled only via override rules (do not delete or modify other blocks)
|
package/skills/spec/SKILL.md
CHANGED
|
@@ -53,7 +53,7 @@ Before writing the spec, understand the current project structure:
|
|
|
53
53
|
3. Identify related type definitions, APIs, and components
|
|
54
54
|
4. **Necessity & scope check** — evaluate whether the request warrants a full spec:
|
|
55
55
|
- **Already exists?** If the feature substantially exists → report: "This feature appears to already exist at {path}." Ask user: enhance existing, replace entirely, or abort.
|
|
56
|
-
- **Over-scoped?** If `$ARGUMENTS` implies
|
|
56
|
+
- **Over-scoped?** If `$ARGUMENTS` implies multiple unrelated concerns or changes that span different architectural boundaries, warn and suggest splitting. Judge by the diversity and independence of concerns, not by file count — a well-organized feature touching many files in one module is fine, while a small change spanning security, database, and UI layers may be over-scoped.
|
|
57
57
|
- **Trivial?** If the change is small enough to implement directly (typo, config value, single-line fix) → suggest: "This can be implemented directly without a full spec. Proceed with direct edit?"
|
|
58
58
|
- If user chooses abort → end with `"No spec generated — {reason}."` and suggest the appropriate alternative.
|
|
59
59
|
|
|
@@ -98,7 +98,7 @@ If `.claude/afc/memory/retrospectives/` directory exists, load the **most recent
|
|
|
98
98
|
|
|
99
99
|
### 5. Critic Loop
|
|
100
100
|
|
|
101
|
-
> **Always** read `${
|
|
101
|
+
> **Always** read `${CLAUDE_SKILL_DIR}/../../docs/critic-loop-rules.md` first and follow it.
|
|
102
102
|
|
|
103
103
|
Run the critic loop until convergence. Safety cap: 5 passes.
|
|
104
104
|
|
package/skills/tasks/SKILL.md
CHANGED
|
@@ -80,8 +80,8 @@ Decompose tasks per Phase defined in plan.md.
|
|
|
80
80
|
1. **1 task = 1 file** principle (where possible)
|
|
81
81
|
2. **Same file = sequential**, **different files = [P] candidate**
|
|
82
82
|
3. **Explicit dependencies**: Use `depends: [T001, T002]` to declare blocking dependencies. Tasks without `depends:` and with [P] marker are immediately parallelizable.
|
|
83
|
-
4. **[P] physical validation**: Before finalizing tasks.md, run `"${
|
|
84
|
-
5. **Dependency graph must be a DAG**: no circular dependencies allowed. **Mandatory validation**: run `"${
|
|
83
|
+
4. **[P] physical validation**: Before finalizing tasks.md, run `"${CLAUDE_SKILL_DIR}/../../scripts/afc-parallel-validate.sh" .claude/afc/specs/{feature}/tasks.md` to verify no file path overlaps exist among [P] tasks within the same phase. Fix any conflicts before proceeding.
|
|
84
|
+
5. **Dependency graph must be a DAG**: no circular dependencies allowed. **Mandatory validation**: run `"${CLAUDE_SKILL_DIR}/../../scripts/afc-dag-validate.sh" .claude/afc/specs/{feature}/tasks.md` before output. Abort if cycle detected.
|
|
85
85
|
6. **Test tasks**: Include a verification task for each testable unit
|
|
86
86
|
7. **Phase gate**: Add a `{config.gate}` validation task at the end of each Phase
|
|
87
87
|
|
|
@@ -93,14 +93,14 @@ If `.claude/afc/memory/retrospectives/` directory exists, load the **most recent
|
|
|
93
93
|
|
|
94
94
|
### 4. Critic Loop
|
|
95
95
|
|
|
96
|
-
> **Always** read `${
|
|
96
|
+
> **Always** read `${CLAUDE_SKILL_DIR}/../../docs/critic-loop-rules.md` first and follow it.
|
|
97
97
|
|
|
98
98
|
Run the critic loop until convergence. Safety cap: 5 passes.
|
|
99
99
|
|
|
100
100
|
| Criterion | Validation |
|
|
101
101
|
|-----------|------------|
|
|
102
102
|
| **COVERAGE** | Are all files in plan.md's File Change Map included in tasks? Are all FR-* in spec.md covered? |
|
|
103
|
-
| **DEPENDENCIES** | Is the dependency graph a valid DAG? Do [P] tasks within the same phase have no file overlaps? Are all `depends:` targets valid task IDs? For physical validation of [P] file overlaps, reference the validation script: `"${
|
|
103
|
+
| **DEPENDENCIES** | Is the dependency graph a valid DAG? Do [P] tasks within the same phase have no file overlaps? Are all `depends:` targets valid task IDs? For physical validation of [P] file overlaps, reference the validation script: `"${CLAUDE_SKILL_DIR}/../../scripts/afc-parallel-validate.sh"` can be called with the tasks.md path to verify no conflicts exist. |
|
|
104
104
|
|
|
105
105
|
**On FAIL**: auto-fix and continue to next pass.
|
|
106
106
|
**On ESCALATE**: pause, present options to user, apply choice, resume.
|
package/skills/test/SKILL.md
CHANGED
|
@@ -93,7 +93,7 @@ Confirm strategy with user before proceeding.
|
|
|
93
93
|
|
|
94
94
|
### 4. Critic Loop
|
|
95
95
|
|
|
96
|
-
> **Always** read `${
|
|
96
|
+
> **Always** read `${CLAUDE_SKILL_DIR}/../../docs/critic-loop-rules.md` first and follow it.
|
|
97
97
|
|
|
98
98
|
Run the critic loop until convergence. Safety cap: 5 passes.
|
|
99
99
|
|
package/skills/triage/SKILL.md
CHANGED
|
@@ -33,7 +33,7 @@ model: sonnet
|
|
|
33
33
|
Run the metadata collection script:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
"${
|
|
36
|
+
"${CLAUDE_SKILL_DIR}/../../scripts/afc-triage.sh" "$ARGUMENTS"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
This returns JSON with PR/issue metadata. If the script is not available, fall back to direct `gh` commands:
|
|
@@ -71,9 +71,8 @@ Task("Triage PR #{number}: {title}", subagent_type: "general-purpose",
|
|
|
71
71
|
2. Run: gh pr view {number} --comments
|
|
72
72
|
3. Analyze the diff for:
|
|
73
73
|
- What the PR does (1-2 sentence summary)
|
|
74
|
-
- Risk level:
|
|
75
|
-
|
|
76
|
-
- Complexity: High (>10 files or cross-cutting) / Medium (3-10 files) / Low (<3 files)
|
|
74
|
+
- Risk level: Assess the actual impact of this PR on the system. Consider: does it change trust boundaries, data flows, or core business logic? Could a bug here cause data loss, security breach, or service outage? Rate risk based on potential blast radius, not file categories.
|
|
75
|
+
- Complexity: Assess the cognitive complexity of reviewing this PR. Consider: how many distinct concerns does it touch, does it cross architectural boundaries, does understanding one change require understanding another? Rate complexity based on review difficulty, not file count.
|
|
77
76
|
- Whether build/test verification is needed (yes/no + reason)
|
|
78
77
|
- Potential issues or concerns (max 3)
|
|
79
78
|
- Suggested reviewers or labels if obvious
|
|
@@ -98,9 +97,9 @@ Task("Triage Issues #{n1}-#{n5}", subagent_type: "general-purpose",
|
|
|
98
97
|
For each issue:
|
|
99
98
|
1. Read issue body and comments: gh issue view {number} --comments
|
|
100
99
|
2. Classify:
|
|
101
|
-
- Type: Bug
|
|
102
|
-
- Priority:
|
|
103
|
-
- Estimated effort:
|
|
100
|
+
- Type: Classify based on the issue's actual nature. The standard categories (Bug, Feature, Enhancement, Question, Maintenance) serve as defaults, but adapt to the project's own labeling conventions if they differ.
|
|
101
|
+
- Priority: Assess priority based on the issue's relationship to current work, user impact, and project goals — not by forcing into generic P0-P3 buckets. Consider: is this blocking other work? How many users are affected? Does it align with current priorities?
|
|
102
|
+
- Estimated effort: Estimate based on the actual scope of work required, considering project complexity and available context — not by rigid day-count buckets.
|
|
104
103
|
- Related PRs (if any mentioned)
|
|
105
104
|
3. One-line summary
|
|
106
105
|
|
|
@@ -203,7 +202,7 @@ Merge Phase 1 and Phase 2 results into a single report:
|
|
|
203
202
|
- **Immediate attention**: {list of Critical PRs and P0 issues}
|
|
204
203
|
- **Ready to merge**: {PRs with no concerns and passing checks}
|
|
205
204
|
- **Needs discussion**: {PRs/issues requiring team input}
|
|
206
|
-
- **Stale items**: {PRs/issues with no activity
|
|
205
|
+
- **Stale items**: {PRs/issues with no meaningful activity for an extended period. Consider the project's typical development cadence — what counts as stale depends on the project's release cycle and activity patterns.}
|
|
207
206
|
```
|
|
208
207
|
|
|
209
208
|
### 5. Save Report
|