ralphctl 0.2.5 → 0.3.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/dist/add-GX7P7XTT.mjs +16 -0
- package/dist/add-JGUOR4Z5.mjs +18 -0
- package/dist/bootstrap-FMHG6DRY.mjs +11 -0
- package/dist/chunk-3QBEBKMZ.mjs +103 -0
- package/dist/chunk-4GHVNKLV.mjs +5088 -0
- package/dist/{chunk-EDJX7TT6.mjs → chunk-57UWLHRH.mjs} +22 -2
- package/dist/chunk-747KW2RW.mjs +24 -0
- package/dist/chunk-CDOPLXFK.mjs +5485 -0
- package/dist/{chunk-7TG3EAQ2.mjs → chunk-CFUVE2BP.mjs} +1 -5
- package/dist/{chunk-IB6OCKZW.mjs → chunk-CTP2A436.mjs} +60 -55
- package/dist/{chunk-UBPZHHCD.mjs → chunk-D2YGPLIV.mjs} +84 -41
- package/dist/{chunk-QBXHAXHI.mjs → chunk-FKMKOWLA.mjs} +154 -208
- package/dist/chunk-HL4ZMHCQ.mjs +261 -0
- package/dist/{chunk-OEUJDSHY.mjs → chunk-IWXBJD2D.mjs} +1 -1
- package/dist/chunk-JXMHLW42.mjs +227 -0
- package/dist/{chunk-EUNAUHC3.mjs → chunk-NUYQK5MN.mjs} +80 -29
- package/dist/{chunk-JRFOUFD3.mjs → chunk-YCDUVPRT.mjs} +32 -52
- package/dist/cli.mjs +168 -3995
- package/dist/create-7WFSCMP4.mjs +15 -0
- package/dist/{handle-TA4MYNQJ.mjs → handle-BBAZJ44Y.mjs} +2 -2
- package/dist/mount-XZPBDRPZ.mjs +6751 -0
- package/dist/{project-YONEJICR.mjs → project-2IE7VWDB.mjs} +9 -5
- package/dist/prompts/harness-context.md +3 -3
- package/dist/prompts/ideate-auto.md +8 -10
- package/dist/prompts/ideate.md +3 -2
- package/dist/prompts/plan-auto.md +12 -12
- package/dist/prompts/plan-common.md +24 -15
- package/dist/prompts/plan-interactive.md +8 -8
- package/dist/prompts/signals-evaluation.md +1 -1
- package/dist/prompts/sprint-feedback.md +48 -0
- package/dist/prompts/task-evaluation-resume.md +7 -5
- package/dist/prompts/task-evaluation.md +37 -33
- package/dist/prompts/task-execution.md +33 -24
- package/dist/prompts/ticket-refine.md +6 -5
- package/dist/prompts/validation-checklist.md +10 -10
- package/dist/{resolver-RXEY6EJE.mjs → resolver-EOE5WUMV.mjs} +5 -5
- package/dist/{sprint-FGLWYWKX.mjs → sprint-OGOFEJJH.mjs} +7 -9
- package/dist/start-MMWC7QLI.mjs +17 -0
- package/package.json +15 -13
- package/dist/add-3T225IX5.mjs +0 -16
- package/dist/add-6A5432U2.mjs +0 -16
- package/dist/chunk-742XQ7FL.mjs +0 -551
- package/dist/chunk-7LZ6GOGN.mjs +0 -53
- package/dist/chunk-CSICORGV.mjs +0 -4333
- package/dist/chunk-DUU5346E.mjs +0 -59
- package/dist/create-MYGOWO2F.mjs +0 -12
- package/dist/multiline-OHSNFCRG.mjs +0 -40
- package/dist/wizard-XZ7OGBCJ.mjs +0 -193
- package/schemas/config.schema.json +0 -30
- package/schemas/ideate-output.schema.json +0 -22
- package/schemas/projects.schema.json +0 -58
- package/schemas/requirements-output.schema.json +0 -24
- package/schemas/sprint.schema.json +0 -109
- package/schemas/task-import.schema.json +0 -56
- package/schemas/tasks.schema.json +0 -98
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "tasks.schema.json",
|
|
4
|
-
"title": "Tasks",
|
|
5
|
-
"description": "Array of tasks in a sprint",
|
|
6
|
-
"type": "array",
|
|
7
|
-
"items": {
|
|
8
|
-
"type": "object",
|
|
9
|
-
"required": ["id", "name", "status", "order", "projectPath"],
|
|
10
|
-
"properties": {
|
|
11
|
-
"id": {
|
|
12
|
-
"type": "string",
|
|
13
|
-
"minLength": 1,
|
|
14
|
-
"description": "Task ID (uuid8)"
|
|
15
|
-
},
|
|
16
|
-
"name": {
|
|
17
|
-
"type": "string",
|
|
18
|
-
"minLength": 1,
|
|
19
|
-
"description": "Task name"
|
|
20
|
-
},
|
|
21
|
-
"description": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"description": "Task description"
|
|
24
|
-
},
|
|
25
|
-
"steps": {
|
|
26
|
-
"type": "array",
|
|
27
|
-
"default": [],
|
|
28
|
-
"description": "Implementation steps",
|
|
29
|
-
"items": {
|
|
30
|
-
"type": "string"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"verificationCriteria": {
|
|
34
|
-
"type": "array",
|
|
35
|
-
"default": [],
|
|
36
|
-
"description": "Definition-of-done checks used to evaluate task completion",
|
|
37
|
-
"items": {
|
|
38
|
-
"type": "string"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"status": {
|
|
42
|
-
"type": "string",
|
|
43
|
-
"enum": ["todo", "in_progress", "done"],
|
|
44
|
-
"default": "todo",
|
|
45
|
-
"description": "Task status (kanban: todo → in_progress → done)"
|
|
46
|
-
},
|
|
47
|
-
"order": {
|
|
48
|
-
"type": "integer",
|
|
49
|
-
"minimum": 1,
|
|
50
|
-
"description": "Task priority order"
|
|
51
|
-
},
|
|
52
|
-
"ticketId": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"description": "Reference to parent ticket (internal ID)"
|
|
55
|
-
},
|
|
56
|
-
"blockedBy": {
|
|
57
|
-
"type": "array",
|
|
58
|
-
"default": [],
|
|
59
|
-
"description": "Task IDs that must complete before this task can start",
|
|
60
|
-
"items": {
|
|
61
|
-
"type": "string"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"projectPath": {
|
|
65
|
-
"type": "string",
|
|
66
|
-
"minLength": 1,
|
|
67
|
-
"description": "Absolute path to the project directory for execution"
|
|
68
|
-
},
|
|
69
|
-
"verified": {
|
|
70
|
-
"type": "boolean",
|
|
71
|
-
"default": false,
|
|
72
|
-
"description": "Whether the task passed verification"
|
|
73
|
-
},
|
|
74
|
-
"verificationOutput": {
|
|
75
|
-
"type": "string",
|
|
76
|
-
"description": "Output from the verification run"
|
|
77
|
-
},
|
|
78
|
-
"evaluated": {
|
|
79
|
-
"type": "boolean",
|
|
80
|
-
"default": false,
|
|
81
|
-
"description": "Whether the evaluator ran on this task"
|
|
82
|
-
},
|
|
83
|
-
"evaluationOutput": {
|
|
84
|
-
"type": "string",
|
|
85
|
-
"description": "Output from the evaluation run (truncated to 2000 chars; full critique in evaluationFile)"
|
|
86
|
-
},
|
|
87
|
-
"evaluationStatus": {
|
|
88
|
-
"type": "string",
|
|
89
|
-
"enum": ["passed", "failed", "malformed"],
|
|
90
|
-
"description": "Evaluation outcome discriminator. 'malformed' = evaluator output had no parseable signal."
|
|
91
|
-
},
|
|
92
|
-
"evaluationFile": {
|
|
93
|
-
"type": "string",
|
|
94
|
-
"description": "Sidecar file path containing the full untruncated critique"
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|