@forwardimpact/libsyntheticprose 0.1.2 → 0.1.3
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/package.json
CHANGED
|
@@ -54,7 +54,7 @@ export function buildCapabilityPrompt(skeleton, ctx, schema) {
|
|
|
54
54
|
" Not all skills need all 6 stages. Use these criteria:",
|
|
55
55
|
" - specify: include if the skill informs what to build or constrains requirements",
|
|
56
56
|
" - plan: include if the skill drives architecture or design decisions",
|
|
57
|
-
" -
|
|
57
|
+
" - scaffold: include if the skill requires tooling, dependencies, or env setup",
|
|
58
58
|
" - code: include if the skill is directly exercised during implementation",
|
|
59
59
|
" - review: include if the skill has quality criteria to verify",
|
|
60
60
|
" - deploy: include if the skill has production or operational concerns",
|
package/prompts/pathway/stage.js
CHANGED
|
@@ -28,7 +28,7 @@ export function buildStagePrompt(stageIds, ctx, schema) {
|
|
|
28
28
|
"## Instructions",
|
|
29
29
|
"- Output a JSON array of stage objects.",
|
|
30
30
|
"- For each stage ID, generate:",
|
|
31
|
-
|
|
31
|
+
` - id: The stage ID (must be one of: ${stageIds.join(", ")}).`,
|
|
32
32
|
' - name: Human-readable name (e.g., "Specify", "Plan").',
|
|
33
33
|
" - emojiIcon: A single emoji for this stage.",
|
|
34
34
|
' - description: 2-3 sentences in second person ("You...").',
|