claude-code-workflow 6.3.8 → 6.3.9

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.
@@ -1,136 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Issue Task JSONL Schema",
4
- "description": "Schema for individual task entries in tasks.jsonl file",
5
- "type": "object",
6
- "required": ["id", "title", "type", "description", "depends_on", "delivery_criteria", "status", "current_phase", "executor"],
7
- "properties": {
8
- "id": {
9
- "type": "string",
10
- "description": "Unique task identifier (e.g., TASK-001)",
11
- "pattern": "^TASK-[0-9]+$"
12
- },
13
- "title": {
14
- "type": "string",
15
- "description": "Short summary of the task",
16
- "maxLength": 100
17
- },
18
- "type": {
19
- "type": "string",
20
- "enum": ["feature", "bug", "refactor", "test", "chore", "docs"],
21
- "description": "Task category"
22
- },
23
- "description": {
24
- "type": "string",
25
- "description": "Detailed instructions for the task"
26
- },
27
- "file_context": {
28
- "type": "array",
29
- "items": { "type": "string" },
30
- "description": "List of relevant files/globs",
31
- "default": []
32
- },
33
- "depends_on": {
34
- "type": "array",
35
- "items": { "type": "string" },
36
- "description": "Array of Task IDs that must complete first",
37
- "default": []
38
- },
39
- "delivery_criteria": {
40
- "type": "array",
41
- "items": { "type": "string" },
42
- "description": "Checklist items that define task completion",
43
- "minItems": 1
44
- },
45
- "pause_criteria": {
46
- "type": "array",
47
- "items": { "type": "string" },
48
- "description": "Conditions that should halt execution (e.g., 'API spec unclear')",
49
- "default": []
50
- },
51
- "status": {
52
- "type": "string",
53
- "enum": ["pending", "ready", "in_progress", "completed", "failed", "paused", "skipped"],
54
- "description": "Current task status",
55
- "default": "pending"
56
- },
57
- "current_phase": {
58
- "type": "string",
59
- "enum": ["analyze", "implement", "test", "optimize", "commit", "done"],
60
- "description": "Current execution phase within the task lifecycle",
61
- "default": "analyze"
62
- },
63
- "executor": {
64
- "type": "string",
65
- "enum": ["agent", "codex", "gemini", "auto"],
66
- "description": "Preferred executor for this task",
67
- "default": "auto"
68
- },
69
- "priority": {
70
- "type": "integer",
71
- "minimum": 1,
72
- "maximum": 5,
73
- "description": "Task priority (1=highest, 5=lowest)",
74
- "default": 3
75
- },
76
- "phase_results": {
77
- "type": "object",
78
- "description": "Results from each execution phase",
79
- "properties": {
80
- "analyze": {
81
- "type": "object",
82
- "properties": {
83
- "status": { "type": "string" },
84
- "findings": { "type": "array", "items": { "type": "string" } },
85
- "timestamp": { "type": "string", "format": "date-time" }
86
- }
87
- },
88
- "implement": {
89
- "type": "object",
90
- "properties": {
91
- "status": { "type": "string" },
92
- "files_modified": { "type": "array", "items": { "type": "string" } },
93
- "timestamp": { "type": "string", "format": "date-time" }
94
- }
95
- },
96
- "test": {
97
- "type": "object",
98
- "properties": {
99
- "status": { "type": "string" },
100
- "test_results": { "type": "string" },
101
- "retry_count": { "type": "integer" },
102
- "timestamp": { "type": "string", "format": "date-time" }
103
- }
104
- },
105
- "optimize": {
106
- "type": "object",
107
- "properties": {
108
- "status": { "type": "string" },
109
- "improvements": { "type": "array", "items": { "type": "string" } },
110
- "timestamp": { "type": "string", "format": "date-time" }
111
- }
112
- },
113
- "commit": {
114
- "type": "object",
115
- "properties": {
116
- "status": { "type": "string" },
117
- "commit_hash": { "type": "string" },
118
- "message": { "type": "string" },
119
- "timestamp": { "type": "string", "format": "date-time" }
120
- }
121
- }
122
- }
123
- },
124
- "created_at": {
125
- "type": "string",
126
- "format": "date-time",
127
- "description": "Task creation timestamp"
128
- },
129
- "updated_at": {
130
- "type": "string",
131
- "format": "date-time",
132
- "description": "Last update timestamp"
133
- }
134
- },
135
- "additionalProperties": false
136
- }
@@ -1,125 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Solutions JSONL Schema",
4
- "description": "Schema for each line in solutions/{issue-id}.jsonl",
5
- "type": "object",
6
- "required": ["id", "tasks", "created_at"],
7
- "properties": {
8
- "id": {
9
- "type": "string",
10
- "description": "Unique solution identifier",
11
- "pattern": "^SOL-[0-9]+$"
12
- },
13
- "description": {
14
- "type": "string",
15
- "description": "Solution approach description"
16
- },
17
- "tasks": {
18
- "type": "array",
19
- "description": "Task breakdown for this solution",
20
- "items": {
21
- "type": "object",
22
- "required": ["id", "title", "scope", "action", "acceptance"],
23
- "properties": {
24
- "id": {
25
- "type": "string",
26
- "pattern": "^T[0-9]+$"
27
- },
28
- "title": {
29
- "type": "string",
30
- "description": "Action verb + target"
31
- },
32
- "scope": {
33
- "type": "string",
34
- "description": "Module path or feature area"
35
- },
36
- "action": {
37
- "type": "string",
38
- "enum": ["Create", "Update", "Implement", "Refactor", "Add", "Delete", "Configure", "Test", "Fix"]
39
- },
40
- "description": {
41
- "type": "string",
42
- "description": "1-2 sentences describing what to implement"
43
- },
44
- "modification_points": {
45
- "type": "array",
46
- "items": {
47
- "type": "object",
48
- "properties": {
49
- "file": { "type": "string" },
50
- "target": { "type": "string" },
51
- "change": { "type": "string" }
52
- }
53
- }
54
- },
55
- "implementation": {
56
- "type": "array",
57
- "items": { "type": "string" },
58
- "description": "Step-by-step implementation guide"
59
- },
60
- "acceptance": {
61
- "type": "array",
62
- "items": { "type": "string" },
63
- "description": "Quantified completion criteria"
64
- },
65
- "depends_on": {
66
- "type": "array",
67
- "items": { "type": "string" },
68
- "default": [],
69
- "description": "Task IDs this task depends on"
70
- },
71
- "estimated_minutes": {
72
- "type": "integer",
73
- "description": "Estimated time to complete"
74
- },
75
- "executor": {
76
- "type": "string",
77
- "enum": ["codex", "gemini", "agent", "auto"],
78
- "default": "auto"
79
- }
80
- }
81
- }
82
- },
83
- "exploration_context": {
84
- "type": "object",
85
- "description": "ACE exploration results",
86
- "properties": {
87
- "project_structure": { "type": "string" },
88
- "relevant_files": {
89
- "type": "array",
90
- "items": { "type": "string" }
91
- },
92
- "patterns": { "type": "string" },
93
- "integration_points": { "type": "string" }
94
- }
95
- },
96
- "analysis": {
97
- "type": "object",
98
- "properties": {
99
- "risk": { "type": "string", "enum": ["low", "medium", "high"] },
100
- "impact": { "type": "string", "enum": ["low", "medium", "high"] },
101
- "complexity": { "type": "string", "enum": ["low", "medium", "high"] }
102
- }
103
- },
104
- "score": {
105
- "type": "number",
106
- "minimum": 0,
107
- "maximum": 1,
108
- "description": "Solution quality score (0.0-1.0)"
109
- },
110
- "is_bound": {
111
- "type": "boolean",
112
- "default": false,
113
- "description": "Whether this solution is bound to the issue"
114
- },
115
- "created_at": {
116
- "type": "string",
117
- "format": "date-time"
118
- },
119
- "bound_at": {
120
- "type": "string",
121
- "format": "date-time",
122
- "description": "When this solution was bound to the issue"
123
- }
124
- }
125
- }