forgedev 1.0.1 → 1.0.2

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.md CHANGED
@@ -19,9 +19,9 @@
19
19
  - Manual test: `node bin/devforge.js test-output`
20
20
 
21
21
  ## Commands
22
- - `/project:help`, `/project:status`, `/project:next`, `/project:done` — daily workflow
23
- - `/project:verify-all`, `/project:audit-spec`, `/project:audit-wiring`, `/project:audit-security` — verification
24
- - `/project:pre-pr`, `/project:run-uat` — release workflow
22
+ - `/workflows`, `/status`, `/next`, `/done` — daily workflow
23
+ - `/verify-all`, `/audit-spec`, `/audit-wiring`, `/audit-security` — verification
24
+ - `/pre-pr`, `/run-uat` — release workflow
25
25
 
26
26
  ## Agents (all READ-ONLY, disallowedTools: Write/Edit/MultiEdit)
27
27
  - code-quality-reviewer, security-reviewer, spec-validator, production-readiness, uat-validator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgedev",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Universal, AI-first project scaffolding CLI with Claude Code infrastructure",
5
5
  "type": "module",
6
6
  "bin": {
@@ -225,7 +225,7 @@ function generateAgents(outputDir, config, vars) {
225
225
  function generateCommands(outputDir, config, vars) {
226
226
  const commandsDir = path.join(CLAUDE_TEMPLATES_DIR, 'commands');
227
227
  const commands = [
228
- 'help.md',
228
+ 'workflows.md',
229
229
  'status.md',
230
230
  'next.md',
231
231
  'done.md',
package/src/guided.js CHANGED
@@ -169,7 +169,7 @@ export function buildGuidedPreview(analysis, stackConfig) {
169
169
  lines.push(' │');
170
170
  lines.push(' └── Developer tools:');
171
171
  lines.push(' • Code quality checks (catches errors automatically)');
172
- lines.push(' • Guided workflows (type /project:help anytime you\'re stuck)');
172
+ lines.push(' • Guided workflows (type /workflows anytime you\'re stuck)');
173
173
  lines.push(' • Testing templates');
174
174
 
175
175
  return lines.join('\n');
@@ -238,7 +238,7 @@ Open a file in your code editor. Change some text. Save.
238
238
  Your browser should update automatically.
239
239
 
240
240
  ### 3. Get AI help (if you have Claude Code)
241
- Type \`/project:help\` in Claude Code. It will ask what you're trying
241
+ Type \`/workflows\` in Claude Code. It will ask what you're trying
242
242
  to do and give you step-by-step guidance.
243
243
 
244
244
  ## Common Tasks
@@ -247,9 +247,9 @@ to do and give you step-by-step guidance.
247
247
  |-----------------------------|------------------------------------------------|
248
248
  | Add a new page | Create a new folder in src/app/ with a page file |
249
249
  | Change how something looks | Edit the styles in the component |
250
- | Add a new feature | Type /project:help → "Start a new feature" |
251
- | Fix a bug | Type /project:help → "Fix a bug" |
252
- | Check if everything works | Type /project:status |
250
+ | Add a new feature | Type /workflows → "Start a new feature" |
251
+ | Fix a bug | Type /workflows → "Fix a bug" |
252
+ | Check if everything works | Type /status |
253
253
  `;
254
254
  }
255
255
 
package/src/index.js CHANGED
@@ -101,7 +101,7 @@ export function printNextSteps(projectName, config, isGuided = false) {
101
101
  console.log('');
102
102
  console.log(chalk.bold(' 📖 New to coding? Here\'s what to do next:'));
103
103
  console.log(' 1. Open this folder in VS Code (or any code editor)');
104
- console.log(' 2. If you have Claude Code installed, type /project:help');
104
+ console.log(' 2. If you have Claude Code installed, type /workflows');
105
105
  console.log(' — it will guide you step by step');
106
106
  console.log(' 3. Or read docs/getting-started.md for a beginner-friendly walkthrough');
107
107
  console.log('');
package/src/init-mode.js CHANGED
@@ -56,7 +56,7 @@ export async function runInit(projectDir) {
56
56
  if (!skipClaudeMd) {
57
57
  console.log(chalk.green(' ✓ ') + 'CLAUDE.md — project context + rules');
58
58
  } else {
59
- console.log(chalk.yellow(' ⊘ ') + `CLAUDE.md — exists (tip: run ${chalk.cyan('/project:optimize-claude-md')} to slim it)`);
59
+ console.log(chalk.yellow(' ⊘ ') + `CLAUDE.md — exists (tip: run ${chalk.cyan('/optimize-claude-md')} to slim it)`);
60
60
  }
61
61
 
62
62
  if (!scan.infrastructure.hasHooks) {
@@ -88,7 +88,7 @@ export async function runInit(projectDir) {
88
88
  console.log('');
89
89
  console.log(chalk.bold(' Next steps:'));
90
90
  console.log(` 1. Open Claude Code in this directory: ${chalk.cyan('claude')}`);
91
- console.log(` 2. Type ${chalk.cyan('/project:help')} to see available workflows`);
91
+ console.log(` 2. Type ${chalk.cyan('/workflows')} to see available workflows`);
92
92
  console.log('');
93
93
  }
94
94
 
@@ -0,0 +1,26 @@
1
+ Show the developer what workflows are available.
2
+
3
+ ## Available Workflows
4
+
5
+ ### Daily Development
6
+ - `/status` — Run all checks and show a project dashboard
7
+ - `/next` — Figure out what to work on next
8
+ - `/done` — Verify the current task is complete before moving on
9
+
10
+ ### Verification
11
+ - `/verify-all` — Run lint, type check, tests, then launch all reviewers
12
+ - `/audit-spec` — Validate implementation against a spec/PRD
13
+ - `/audit-wiring` — Find dead or unwired features
14
+ - `/audit-security` — Run a security audit
15
+
16
+ ### Release
17
+ - `/pre-pr` — Run the complete pre-PR checklist
18
+ - `/run-uat` — Execute UAT scenarios
19
+
20
+ ### Generation
21
+ - `/generate-prd` — Generate a PRD from the current codebase
22
+ - `/generate-uat` — Generate UAT scenarios and checklists
23
+ - `/optimize-claude-md` — Slim down an oversized CLAUDE.md
24
+
25
+ ## Quick Start
26
+ Run `/status` to see where things stand, then `/next` to pick up work.
@@ -1,26 +0,0 @@
1
- Show the developer what workflows are available.
2
-
3
- ## Available Workflows
4
-
5
- ### Daily Development
6
- - `/project:status` — Run all checks and show a project dashboard
7
- - `/project:next` — Figure out what to work on next
8
- - `/project:done` — Verify the current task is complete before moving on
9
-
10
- ### Verification
11
- - `/project:verify-all` — Run lint, type check, tests, then launch all reviewers
12
- - `/project:audit-spec` — Validate implementation against a spec/PRD
13
- - `/project:audit-wiring` — Find dead or unwired features
14
- - `/project:audit-security` — Run a security audit
15
-
16
- ### Release
17
- - `/project:pre-pr` — Run the complete pre-PR checklist
18
- - `/project:run-uat` — Execute UAT scenarios
19
-
20
- ### Generation
21
- - `/project:generate-prd` — Generate a PRD from the current codebase
22
- - `/project:generate-uat` — Generate UAT scenarios and checklists
23
- - `/project:optimize-claude-md` — Slim down an oversized CLAUDE.md
24
-
25
- ## Quick Start
26
- Run `/project:status` to see where things stand, then `/project:next` to pick up work.