claude-code-workflow 6.3.49 → 6.3.50
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/commands/issue/new.md +1 -2
- package/.codex/prompts/analyze-with-file.md +5 -2
- package/.codex/prompts/brainstorm-to-cycle.md +4 -3
- package/.codex/prompts/brainstorm-with-file.md +6 -2
- package/.codex/prompts/clean.md +7 -2
- package/.codex/prompts/compact.md +5 -3
- package/.codex/prompts/debug-with-file.md +6 -2
- package/.codex/prompts/execute.md +6 -2
- package/.codex/prompts/issue-execute.md +10 -2
- package/.codex/prompts/issue-new.md +390 -285
- package/.codex/prompts/lite-execute.md +8 -7
- package/.codex/prompts/lite-fix.md +6 -2
- package/.codex/prompts/lite-plan-a.md +6 -2
- package/.codex/prompts/lite-plan-b.md +6 -2
- package/.codex/prompts/lite-plan-c.md +6 -2
- package/ccw/dist/cli.d.ts.map +1 -1
- package/ccw/dist/cli.js +1 -0
- package/ccw/dist/cli.js.map +1 -1
- package/ccw/dist/commands/cli.d.ts +1 -0
- package/ccw/dist/commands/cli.d.ts.map +1 -1
- package/ccw/dist/commands/cli.js +51 -4
- package/ccw/dist/commands/cli.js.map +1 -1
- package/ccw/dist/core/routes/cli-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/cli-routes.js +16 -1
- package/ccw/dist/core/routes/cli-routes.js.map +1 -1
- package/ccw/src/cli.ts +1 -0
- package/ccw/src/commands/cli.ts +51 -4
- package/ccw/src/core/routes/cli-routes.ts +16 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Interactive collaborative analysis with documented discussions, CLI-assisted exploration, and evolving understanding
|
|
3
|
-
argument-hint: TOPIC
|
|
2
|
+
description: Interactive collaborative analysis with documented discussions, CLI-assisted exploration, and evolving understanding. Supports depth control and iteration limits.
|
|
3
|
+
argument-hint: "TOPIC=\"<topic or question>\" [--depth=standard|deep|full] [--max-iterations=<n>] [--verbose]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Codex Analyze-With-File Prompt
|
|
@@ -22,6 +22,9 @@ Interactive collaborative analysis workflow with **documented discussion process
|
|
|
22
22
|
|
|
23
23
|
**$TOPIC**
|
|
24
24
|
|
|
25
|
+
- `--depth`: Analysis depth (standard|deep|full)
|
|
26
|
+
- `--max-iterations`: Max discussion rounds
|
|
27
|
+
|
|
25
28
|
## Execution Process
|
|
26
29
|
|
|
27
30
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Convert brainstorm session output to parallel-dev-cycle input with idea selection and context enrichment
|
|
3
|
-
argument-hint:
|
|
2
|
+
description: Convert brainstorm session output to parallel-dev-cycle input with idea selection and context enrichment. Unified parameter format.
|
|
3
|
+
argument-hint: "--session=<id> [--idea=<index>] [--auto] [--launch]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Brainstorm to Cycle Adapter
|
|
@@ -15,9 +15,10 @@ Bridge workflow that converts **brainstorm-with-file** output to **parallel-dev-
|
|
|
15
15
|
|
|
16
16
|
| Argument | Required | Description |
|
|
17
17
|
|----------|----------|-------------|
|
|
18
|
-
|
|
|
18
|
+
| --session | Yes | Brainstorm session ID (e.g., `BS-rate-limiting-2025-01-28`) |
|
|
19
19
|
| --idea | No | Pre-select idea by index (0-based, from top_ideas) |
|
|
20
20
|
| --auto | No | Auto-select top-scored idea without confirmation |
|
|
21
|
+
| --launch | No | Auto-launch parallel-dev-cycle without preview |
|
|
21
22
|
|
|
22
23
|
## Output
|
|
23
24
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Interactive brainstorming with multi-perspective analysis, idea expansion, and documented thought evolution
|
|
3
|
-
argument-hint: TOPIC
|
|
2
|
+
description: Interactive brainstorming with multi-perspective analysis, idea expansion, and documented thought evolution. Supports perspective selection and idea limits.
|
|
3
|
+
argument-hint: "TOPIC=\"<idea or topic>\" [--perspectives=role1,role2,...] [--max-ideas=<n>] [--focus=<area>] [--verbose]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Codex Brainstorm-With-File Prompt
|
|
@@ -22,6 +22,10 @@ Interactive brainstorming workflow with **documented thought evolution**. Expand
|
|
|
22
22
|
|
|
23
23
|
**$TOPIC**
|
|
24
24
|
|
|
25
|
+
- `--perspectives`: Analysis perspectives (role1,role2,...)
|
|
26
|
+
- `--max-ideas`: Max number of ideas
|
|
27
|
+
- `--focus`: Focus area
|
|
28
|
+
|
|
25
29
|
## Execution Process
|
|
26
30
|
|
|
27
31
|
```
|
package/.codex/prompts/clean.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Intelligent code cleanup with mainline detection, stale artifact discovery, and safe execution
|
|
3
|
-
argument-hint: [--dry-run] [
|
|
2
|
+
description: Intelligent code cleanup with mainline detection, stale artifact discovery, and safe execution. Supports targeted cleanup and confirmation.
|
|
3
|
+
argument-hint: "[--dry-run] [--focus=<area>] [--target=sessions|documents|dead-code] [--confirm]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Workflow Clean Command
|
|
@@ -16,6 +16,11 @@ Evidence-based intelligent cleanup command. Systematically identifies stale arti
|
|
|
16
16
|
**Focus area**: $FOCUS (or entire project if not specified)
|
|
17
17
|
**Mode**: $ARGUMENTS
|
|
18
18
|
|
|
19
|
+
- `--dry-run`: Preview cleanup without executing
|
|
20
|
+
- `--focus`: Focus area (module or path)
|
|
21
|
+
- `--target`: Cleanup target (sessions|documents|dead-code)
|
|
22
|
+
- `--confirm`: Skip confirmation, execute directly
|
|
23
|
+
|
|
19
24
|
## Execution Process
|
|
20
25
|
|
|
21
26
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Compact current session memory into structured text for session recovery
|
|
3
|
-
argument-hint: "[
|
|
2
|
+
description: Compact current session memory into structured text for session recovery. Supports custom descriptions and tagging.
|
|
3
|
+
argument-hint: "[--description=\"...\"] [--tags=<tag1,tag2>] [--force]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Memory Compact Command (/memory:compact)
|
|
@@ -17,9 +17,11 @@ The `memory:compact` command **compresses current session working memory** into
|
|
|
17
17
|
|
|
18
18
|
## 2. Parameters
|
|
19
19
|
|
|
20
|
-
-
|
|
20
|
+
- `--description`: Custom session description (optional)
|
|
21
21
|
- Example: "completed core-memory module"
|
|
22
22
|
- Example: "debugging JWT refresh - suspected memory leak"
|
|
23
|
+
- `--tags`: Comma-separated tags for categorization (optional)
|
|
24
|
+
- `--force`: Skip confirmation, save directly
|
|
23
25
|
|
|
24
26
|
## 3. Structured Output Format
|
|
25
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Interactive hypothesis-driven debugging with documented exploration, understanding evolution, and analysis-assisted correction
|
|
3
|
-
argument-hint: BUG
|
|
2
|
+
description: Interactive hypothesis-driven debugging with documented exploration, understanding evolution, and analysis-assisted correction. Supports scope and focus control.
|
|
3
|
+
argument-hint: "BUG=\"<bug description or error message>\" [--scope=<path>] [--focus=<component>] [--depth=standard|deep] [--verbose]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Codex Debug-With-File Prompt
|
|
@@ -21,6 +21,10 @@ Enhanced evidence-based debugging with **documented exploration process**. Recor
|
|
|
21
21
|
|
|
22
22
|
**$BUG**
|
|
23
23
|
|
|
24
|
+
- `--scope`: Debug scope limit (file path)
|
|
25
|
+
- `--focus`: Focus component
|
|
26
|
+
- `--depth`: Debug depth (standard|deep)
|
|
27
|
+
|
|
24
28
|
## Execution Process
|
|
25
29
|
|
|
26
30
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Execute workflow tasks sequentially from session folder
|
|
3
|
-
argument-hint: SESSION=<path-to-session-folder>
|
|
2
|
+
description: Execute workflow tasks sequentially from session folder. Supports parallel execution and task filtering.
|
|
3
|
+
argument-hint: "SESSION=<path-to-session-folder> [--parallel] [--filter=<pattern>] [--skip-tests]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Workflow Execute (Codex Version)
|
|
@@ -13,6 +13,10 @@ argument-hint: SESSION=<path-to-session-folder>
|
|
|
13
13
|
|
|
14
14
|
Session folder path via `$SESSION` (e.g., `.workflow/active/WFS-auth-system`)
|
|
15
15
|
|
|
16
|
+
- `--parallel`: Execute tasks in parallel (default: sequential)
|
|
17
|
+
- `--filter`: Filter tasks by pattern (e.g., `IMPL-1.*`)
|
|
18
|
+
- `--skip-tests`: Skip test execution
|
|
19
|
+
|
|
16
20
|
## Task Tracking (JSON Source of Truth + Codex TODO Tool)
|
|
17
21
|
|
|
18
22
|
- **Source of truth**: Task state MUST be read from and written to `$SESSION/.task/IMPL-*.json`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Execute all solutions from issue queue with git commit after each solution
|
|
3
|
-
argument-hint: "--queue
|
|
2
|
+
description: Execute all solutions from issue queue with git commit after each solution. Supports batch processing and execution control.
|
|
3
|
+
argument-hint: "--queue=<id> [--worktree=<path|new>] [--skip-tests] [--skip-build] [--dry-run] [--verbose]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Issue Execute (Codex Version)
|
|
@@ -19,6 +19,14 @@ Before starting execution, load project context:
|
|
|
19
19
|
|
|
20
20
|
This ensures execution follows project conventions and patterns.
|
|
21
21
|
|
|
22
|
+
## Parameters
|
|
23
|
+
|
|
24
|
+
- `--queue=<id>`: Queue ID to execute (REQUIRED)
|
|
25
|
+
- `--worktree=<path|new>`: Worktree path or 'new' for creating new worktree
|
|
26
|
+
- `--skip-tests`: Skip test execution during solution implementation
|
|
27
|
+
- `--skip-build`: Skip build step
|
|
28
|
+
- `--dry-run`: Preview execution without making changes
|
|
29
|
+
|
|
22
30
|
## Queue ID Requirement (MANDATORY)
|
|
23
31
|
|
|
24
32
|
**`--queue <queue-id>` parameter is REQUIRED**
|