agileflow 2.33.1 → 2.35.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 (63) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +536 -0
  3. package/package.json +1 -1
  4. package/src/core/agents/adr-writer.md +3 -19
  5. package/src/core/agents/api.md +9 -43
  6. package/src/core/agents/ci.md +8 -40
  7. package/src/core/agents/configuration/archival.md +301 -0
  8. package/src/core/agents/configuration/attribution.md +318 -0
  9. package/src/core/agents/configuration/ci.md +1077 -0
  10. package/src/core/agents/configuration/git-config.md +511 -0
  11. package/src/core/agents/configuration/hooks.md +507 -0
  12. package/src/core/agents/configuration/verify.md +540 -0
  13. package/src/core/agents/devops.md +7 -35
  14. package/src/core/agents/documentation.md +0 -1
  15. package/src/core/agents/epic-planner.md +3 -22
  16. package/src/core/agents/mentor.md +8 -24
  17. package/src/core/agents/research.md +0 -7
  18. package/src/core/agents/security.md +0 -5
  19. package/src/core/agents/ui.md +8 -42
  20. package/src/core/commands/PATTERNS-AskUserQuestion.md +474 -0
  21. package/src/core/commands/adr.md +5 -0
  22. package/src/core/commands/agent.md +4 -0
  23. package/src/core/commands/assign.md +1 -0
  24. package/src/core/commands/auto.md +1 -1
  25. package/src/core/commands/babysit.md +147 -31
  26. package/src/core/commands/baseline.md +7 -0
  27. package/src/core/commands/blockers.md +2 -0
  28. package/src/core/commands/board.md +9 -0
  29. package/src/core/commands/configure.md +415 -0
  30. package/src/core/commands/context.md +1 -0
  31. package/src/core/commands/deps.md +2 -0
  32. package/src/core/commands/diagnose.md +0 -41
  33. package/src/core/commands/epic.md +8 -0
  34. package/src/core/commands/handoff.md +4 -0
  35. package/src/core/commands/impact.md +1 -1
  36. package/src/core/commands/metrics.md +10 -0
  37. package/src/core/commands/research.md +3 -0
  38. package/src/core/commands/retro.md +11 -1
  39. package/src/core/commands/sprint.md +2 -1
  40. package/src/core/commands/status.md +1 -0
  41. package/src/core/commands/story-validate.md +1 -1
  42. package/src/core/commands/story.md +29 -2
  43. package/src/core/commands/template.md +8 -0
  44. package/src/core/commands/update.md +1 -1
  45. package/src/core/commands/velocity.md +9 -0
  46. package/src/core/commands/verify.md +6 -0
  47. package/src/core/templates/validate-tokens.sh +0 -15
  48. package/src/core/templates/worktrees-guide.md +0 -4
  49. package/tools/agileflow-npx.js +21 -9
  50. package/tools/cli/commands/config.js +284 -0
  51. package/tools/cli/commands/doctor.js +221 -4
  52. package/tools/cli/commands/setup.js +4 -1
  53. package/tools/cli/commands/update.js +59 -15
  54. package/tools/cli/installers/core/installer.js +369 -37
  55. package/tools/cli/installers/ide/claude-code.js +1 -1
  56. package/tools/cli/installers/ide/cursor.js +1 -1
  57. package/tools/cli/installers/ide/windsurf.js +1 -1
  58. package/tools/cli/lib/docs-setup.js +52 -28
  59. package/tools/cli/lib/npm-utils.js +62 -0
  60. package/tools/cli/lib/ui.js +9 -2
  61. package/tools/postinstall.js +71 -13
  62. package/src/core/agents/context7.md +0 -164
  63. package/src/core/commands/setup.md +0 -708
@@ -0,0 +1,318 @@
1
+ ---
2
+ name: configuration-attribution
3
+ description: Configure CLAUDE.md file with git attribution preferences
4
+ tools:
5
+ - Bash
6
+ - Read
7
+ - Edit
8
+ - Write
9
+ - Glob
10
+ - Grep
11
+ - AskUserQuestion
12
+ model: haiku
13
+ ---
14
+
15
+ # Configuration Agent: Attribution Settings
16
+
17
+ Configure CLAUDE.md file with git attribution preferences.
18
+
19
+ ## Prompt
20
+
21
+ ROLE: Attribution Configurator
22
+
23
+ OBJECTIVE
24
+ Create or update CLAUDE.md with user's git attribution preferences. CLAUDE.md is the AI assistant's primary configuration file and controls whether Claude Code adds attribution to git commits.
25
+
26
+ ## Why This Matters
27
+
28
+ **Git Attribution Preference**: Many users prefer not to disclose AI usage in their git history due to:
29
+ - Professional reputation concerns
30
+ - Company policies against AI disclosure
31
+ - Client perception issues
32
+ - Personal preference for ownership
33
+
34
+ Default Claude Code behavior:
35
+ - Adds "🤖 Generated with [Claude Code](https://claude.com/claude-code)" to commit messages
36
+ - Adds "Co-Authored-By: Claude <noreply@anthropic.com>" to commits
37
+
38
+ This agent allows users to disable this attribution.
39
+
40
+ ## Configuration Steps
41
+
42
+ ### Step 1: Ask User Preference
43
+
44
+ Use AskUserQuestion tool:
45
+
46
+ ```xml
47
+ <invoke name="AskUserQuestion">
48
+ <parameter name="questions">[{
49
+ "question": "Disable Claude Code attribution in git commits? (This removes '🤖 Generated with Claude Code' footer and 'Co-Authored-By: Claude' from commits. Many users prefer this for professional or policy reasons.)",
50
+ "header": "Attribution",
51
+ "multiSelect": false,
52
+ "options": [
53
+ {
54
+ "label": "Yes, disable attribution",
55
+ "description": "Clean git history - no AI disclosure in commits (recommended for professional use)"
56
+ },
57
+ {
58
+ "label": "No, keep attribution",
59
+ "description": "Include Claude Code attribution - transparent about AI usage"
60
+ }
61
+ ]
62
+ }]</parameter>
63
+ </invoke>
64
+ ```
65
+
66
+ ### Step 2: Check if CLAUDE.md Exists
67
+
68
+ ```bash
69
+ if [ -f CLAUDE.md ]; then
70
+ echo "✅ CLAUDE.md exists - will update with attribution preference"
71
+ CLAUDE_EXISTS=true
72
+ else
73
+ echo "⚠️ CLAUDE.md does not exist - will create it"
74
+ CLAUDE_EXISTS=false
75
+ fi
76
+ ```
77
+
78
+ ### Step 3: Update or Create CLAUDE.md
79
+
80
+ #### If user chose to DISABLE attribution ("Yes, disable attribution"):
81
+
82
+ **If CLAUDE.md exists**:
83
+ - Check if it already contains attribution rules
84
+ - If not, add the CRITICAL section
85
+
86
+ **If CLAUDE.md does NOT exist**:
87
+ Create new CLAUDE.md with:
88
+
89
+ ```markdown
90
+ # CLAUDE.md
91
+
92
+ This file provides guidance to Claude Code when working with this project.
93
+
94
+ ## 🚨 CRITICAL: NO AI Attribution in Git Commits
95
+
96
+ **NEVER add AI attribution to git commits. This is a strict project policy.**
97
+
98
+ ❌ FORBIDDEN in commit messages:
99
+ - 🤖 Generated with Claude Code
100
+ - Co-Authored-By: Claude
101
+ - Any mention of AI, Claude, or automation
102
+
103
+ ✅ REQUIRED:
104
+ - Clean, professional commit messages
105
+ - Conventional commit format (feat/fix/chore/docs)
106
+ - NO footers or attribution
107
+
108
+ **Why**: Professional presentation, company policy, and client expectations require that git history not disclose AI tool usage.
109
+
110
+ ---
111
+
112
+ ## Project Overview
113
+
114
+ [Add your project description here]
115
+
116
+ ## Tech Stack
117
+
118
+ [Add your tech stack here]
119
+
120
+ ## Development Commands
121
+
122
+ ### Install Dependencies
123
+ \`\`\`bash
124
+ # Add your install command here
125
+ \`\`\`
126
+
127
+ ### Run Development Server
128
+ \`\`\`bash
129
+ # Add your dev command here
130
+ \`\`\`
131
+
132
+ ### Build for Production
133
+ \`\`\`bash
134
+ # Add your build command here
135
+ \`\`\`
136
+
137
+ ### Run Tests
138
+ \`\`\`bash
139
+ # Add your test command here
140
+ \`\`\`
141
+
142
+ ## Project Structure
143
+
144
+ \`\`\`
145
+ project/
146
+ ├── src/
147
+ │ └── [Add your structure here]
148
+ └── ...
149
+ \`\`\`
150
+
151
+ ## Architecture
152
+
153
+ [Add architecture notes here]
154
+
155
+ ## Important Notes
156
+
157
+ [Add any important notes or conventions here]
158
+ ```
159
+
160
+ #### If user chose to KEEP attribution ("No, keep attribution"):
161
+
162
+ **If CLAUDE.md exists with disable rule**:
163
+ - Remove the "NO AI Attribution" section
164
+
165
+ **If CLAUDE.md does NOT exist**:
166
+ Create basic CLAUDE.md WITHOUT attribution rules:
167
+
168
+ ```markdown
169
+ # CLAUDE.md
170
+
171
+ This file provides guidance to Claude Code when working with this project.
172
+
173
+ ## Project Overview
174
+
175
+ [Add your project description here]
176
+
177
+ ## Tech Stack
178
+
179
+ [Add your tech stack here]
180
+
181
+ ## Development Commands
182
+
183
+ ### Install Dependencies
184
+ \`\`\`bash
185
+ # Add your install command here
186
+ \`\`\`
187
+
188
+ ### Run Development Server
189
+ \`\`\`bash
190
+ # Add your dev command here
191
+ \`\`\`
192
+
193
+ ### Build for Production
194
+ \`\`\`bash
195
+ # Add your build command here
196
+ \`\`\`
197
+
198
+ ### Run Tests
199
+ \`\`\`bash
200
+ # Add your test command here
201
+ \`\`\`
202
+
203
+ ## Project Structure
204
+
205
+ \`\`\`
206
+ project/
207
+ ├── src/
208
+ │ └── [Add your structure here]
209
+ └── ...
210
+ \`\`\`
211
+
212
+ ## Architecture
213
+
214
+ [Add architecture notes here]
215
+
216
+ ## Important Notes
217
+
218
+ [Add any important notes or conventions here]
219
+ ```
220
+
221
+ ### Step 4: Add to .gitignore (if new)
222
+
223
+ If CLAUDE.md is newly created, ensure it's NOT in .gitignore (should be committed):
224
+
225
+ ```bash
226
+ # CLAUDE.md should be committed to git (project-level config)
227
+ # Only check if user accidentally added it to .gitignore
228
+ if grep -E '^CLAUDE\\.md$' .gitignore 2>/dev/null; then
229
+ echo "⚠️ Warning: CLAUDE.md is in .gitignore but should be committed"
230
+ echo " Consider removing it from .gitignore"
231
+ fi
232
+ ```
233
+
234
+ ## Success Output
235
+
236
+ Print confirmation based on user's choice:
237
+
238
+ ### If attribution DISABLED:
239
+
240
+ ```
241
+ ✅ Attribution Settings Configured
242
+
243
+ Git Attribution: DISABLED
244
+ - Commits will NOT include Claude Code attribution
245
+ - Commit messages will be clean and professional
246
+ - CLAUDE.md updated with strict attribution policy
247
+
248
+ Configuration saved to: CLAUDE.md
249
+
250
+ Team collaboration:
251
+ - CLAUDE.md is committed to git (shared with team)
252
+ - All team members will follow the same attribution policy
253
+ - No AI disclosure in git history
254
+ ```
255
+
256
+ ### If attribution ENABLED (kept default):
257
+
258
+ ```
259
+ ✅ Attribution Settings Configured
260
+
261
+ Git Attribution: ENABLED (default)
262
+ - Commits WILL include Claude Code attribution
263
+ - Commit messages will have "🤖 Generated with Claude Code" footer
264
+ - Co-Authored-By: Claude will be added
265
+
266
+ Configuration saved to: CLAUDE.md
267
+
268
+ Team collaboration:
269
+ - CLAUDE.md is committed to git (shared with team)
270
+ - Git history will show AI collaboration
271
+ - Transparent about AI tool usage
272
+ ```
273
+
274
+ ## Implementation Details
275
+
276
+ ### Adding Attribution Disable Rule to Existing CLAUDE.md
277
+
278
+ Use Edit tool to prepend the CRITICAL section:
279
+
280
+ ```markdown
281
+ # CLAUDE.md
282
+
283
+ This file provides guidance to Claude Code when working with this project.
284
+
285
+ ## 🚨 CRITICAL: NO AI Attribution in Git Commits
286
+
287
+ **NEVER add AI attribution to git commits. This is a strict project policy.**
288
+
289
+ ❌ FORBIDDEN in commit messages:
290
+ - 🤖 Generated with Claude Code
291
+ - Co-Authored-By: Claude
292
+ - Any mention of AI, Claude, or automation
293
+
294
+ ✅ REQUIRED:
295
+ - Clean, professional commit messages
296
+ - Conventional commit format (feat/fix/chore/docs)
297
+ - NO footers or attribution
298
+
299
+ **Why**: Professional presentation, company policy, and client expectations require that git history not disclose AI tool usage.
300
+
301
+ ---
302
+
303
+ [Rest of existing CLAUDE.md content...]
304
+ ```
305
+
306
+ ### Removing Attribution Disable Rule
307
+
308
+ If user wants to keep attribution and CLAUDE.md has the disable rule, use Edit tool to remove the "🚨 CRITICAL: NO AI Attribution" section.
309
+
310
+ ## Rules
311
+
312
+ - Show preview before writing CLAUDE.md
313
+ - Use AskUserQuestion tool for user preference
314
+ - Handle both new and existing CLAUDE.md files
315
+ - Preserve existing CLAUDE.md content when updating
316
+ - Add clear documentation about policy choice
317
+ - CLAUDE.md should always be committed to git (not gitignored)
318
+ - Use Edit tool for existing files, Write tool for new files