@shahmarasy/prodo 0.1.0 → 0.1.1
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/agent-command-installer.js +6 -21
- package/dist/agents.js +15 -15
- package/dist/artifacts.js +105 -8
- package/dist/cli.js +6 -8
- package/dist/init.js +21 -0
- package/dist/template-resolver.d.ts +4 -0
- package/dist/template-resolver.js +18 -0
- package/dist/templates.js +5 -5
- package/package.json +1 -1
- package/src/agent-command-installer.ts +6 -21
- package/src/agents.ts +15 -15
- package/src/artifacts.ts +136 -8
- package/src/cli.ts +7 -9
- package/src/init.ts +17 -0
- package/src/template-resolver.ts +21 -0
- package/src/templates.ts +5 -5
- package/templates/artifacts/stories.md +11 -3
- package/templates/artifacts/wireframe.md +93 -15
- package/templates/artifacts/workflow.md +76 -16
- package/templates/commands/prodo-normalize.md +5 -6
- package/templates/commands/prodo-prd.md +6 -7
- package/templates/commands/prodo-stories.md +6 -7
- package/templates/commands/prodo-techspec.md +6 -7
- package/templates/commands/prodo-validate.md +6 -7
- package/templates/commands/prodo-wireframe.md +6 -7
- package/templates/commands/prodo-workflow.md +6 -7
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Generate user stories artifact.
|
|
3
|
-
run:
|
|
4
|
-
action: stories
|
|
5
|
-
mode: internal-runtime
|
|
6
3
|
---
|
|
7
4
|
|
|
8
5
|
## User Input
|
|
@@ -13,12 +10,14 @@ $ARGUMENTS
|
|
|
13
10
|
|
|
14
11
|
Execution policy:
|
|
15
12
|
- Execute-first, diagnose-second.
|
|
16
|
-
-
|
|
13
|
+
- Do not run shell/CLI commands from inside the agent.
|
|
17
14
|
- Input files are read-only; never modify or rewrite `brief.md`.
|
|
18
15
|
|
|
19
16
|
## Execution
|
|
20
17
|
|
|
21
18
|
1. Verify minimal prerequisites (`.prodo/`, `brief.md`, normalized brief).
|
|
22
|
-
2.
|
|
23
|
-
3. Confirm stories output was created
|
|
24
|
-
4.
|
|
19
|
+
2. Use normalized brief + latest PRD and apply stories template from `.prodo/templates/stories.md`.
|
|
20
|
+
3. Confirm stories output was created under `product-docs/stories/`.
|
|
21
|
+
4. Confirm `brief.md` content did not change.
|
|
22
|
+
5. Do not create manual fallback files under `.prodo/`.
|
|
23
|
+
6. Diagnose internals only if command fails.
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Generate technical specification artifact.
|
|
3
|
-
run:
|
|
4
|
-
action: techspec
|
|
5
|
-
mode: internal-runtime
|
|
6
3
|
---
|
|
7
4
|
|
|
8
5
|
## User Input
|
|
@@ -13,12 +10,14 @@ $ARGUMENTS
|
|
|
13
10
|
|
|
14
11
|
Execution policy:
|
|
15
12
|
- Execute-first, diagnose-second.
|
|
16
|
-
-
|
|
13
|
+
- Do not run shell/CLI commands from inside the agent.
|
|
17
14
|
- Input files are read-only; never modify or rewrite `brief.md`.
|
|
18
15
|
|
|
19
16
|
## Execution
|
|
20
17
|
|
|
21
18
|
1. Verify minimal prerequisites (`.prodo/`, `brief.md`, normalized brief).
|
|
22
|
-
2.
|
|
23
|
-
3. Confirm techspec output was created
|
|
24
|
-
4.
|
|
19
|
+
2. Use normalized brief + latest upstream artifacts and apply techspec template from `.prodo/templates/techspec.md`.
|
|
20
|
+
3. Confirm techspec output was created under `product-docs/techspec/`.
|
|
21
|
+
4. Confirm `brief.md` content did not change.
|
|
22
|
+
5. Do not create manual fallback files under `.prodo/`.
|
|
23
|
+
6. Diagnose internals only if command fails.
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Validate artifact set.
|
|
3
|
-
run:
|
|
4
|
-
action: validate
|
|
5
|
-
mode: internal-runtime
|
|
6
3
|
---
|
|
7
4
|
|
|
8
5
|
## User Input
|
|
@@ -13,12 +10,14 @@ $ARGUMENTS
|
|
|
13
10
|
|
|
14
11
|
Execution policy:
|
|
15
12
|
- Execute-first, diagnose-second.
|
|
16
|
-
-
|
|
13
|
+
- Do not run shell/CLI commands from inside the agent.
|
|
17
14
|
- Input files are read-only; never modify or rewrite `brief.md`.
|
|
18
15
|
|
|
19
16
|
## Execution
|
|
20
17
|
|
|
21
18
|
1. Verify minimal prerequisites (`.prodo/`, `brief.md`, normalized brief).
|
|
22
|
-
2.
|
|
23
|
-
3. Confirm validation report exists and status is clear.
|
|
24
|
-
4.
|
|
19
|
+
2. Validate latest artifacts under `product-docs/` for schema + cross-artifact consistency.
|
|
20
|
+
3. Confirm validation report exists under `product-docs/reports/` and status is clear.
|
|
21
|
+
4. Confirm `brief.md` content did not change.
|
|
22
|
+
5. Do not create manual fallback files under `.prodo/`.
|
|
23
|
+
6. Diagnose internals only if command fails.
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Generate wireframe artifacts.
|
|
3
|
-
run:
|
|
4
|
-
action: wireframe
|
|
5
|
-
mode: internal-runtime
|
|
6
3
|
---
|
|
7
4
|
|
|
8
5
|
## User Input
|
|
@@ -13,12 +10,14 @@ $ARGUMENTS
|
|
|
13
10
|
|
|
14
11
|
Execution policy:
|
|
15
12
|
- Execute-first, diagnose-second.
|
|
16
|
-
-
|
|
13
|
+
- Do not run shell/CLI commands from inside the agent.
|
|
17
14
|
- Input files are read-only; never modify or rewrite `brief.md`.
|
|
18
15
|
|
|
19
16
|
## Execution
|
|
20
17
|
|
|
21
18
|
1. Verify minimal prerequisites (`.prodo/`, `brief.md`, normalized brief).
|
|
22
|
-
2.
|
|
23
|
-
3. Confirm paired outputs exist (`.md` + `.html`).
|
|
24
|
-
4.
|
|
19
|
+
2. Use normalized brief + latest PRD/workflow and apply wireframe templates (`.prodo/templates/wireframe.md` and `.prodo/templates/wireframe.html`).
|
|
20
|
+
3. Confirm paired outputs exist under `product-docs/wireframes/` (`.md` + `.html`).
|
|
21
|
+
4. Confirm `brief.md` content did not change.
|
|
22
|
+
5. Do not create manual fallback files under `.prodo/`.
|
|
23
|
+
6. Diagnose internals only if command fails.
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Generate workflow artifacts.
|
|
3
|
-
run:
|
|
4
|
-
action: workflow
|
|
5
|
-
mode: internal-runtime
|
|
6
3
|
---
|
|
7
4
|
|
|
8
5
|
## User Input
|
|
@@ -13,12 +10,14 @@ $ARGUMENTS
|
|
|
13
10
|
|
|
14
11
|
Execution policy:
|
|
15
12
|
- Execute-first, diagnose-second.
|
|
16
|
-
-
|
|
13
|
+
- Do not run shell/CLI commands from inside the agent.
|
|
17
14
|
- Input files are read-only; never modify or rewrite `brief.md`.
|
|
18
15
|
|
|
19
16
|
## Execution
|
|
20
17
|
|
|
21
18
|
1. Verify minimal prerequisites (`.prodo/`, `brief.md`, normalized brief).
|
|
22
|
-
2.
|
|
23
|
-
3. Confirm paired outputs exist (`.md` + `.mmd`).
|
|
24
|
-
4.
|
|
19
|
+
2. Use normalized brief + latest PRD and apply workflow templates (`.prodo/templates/workflow.md` and `.prodo/templates/workflow.mmd`).
|
|
20
|
+
3. Confirm paired outputs exist under `product-docs/workflows/` (`.md` + `.mmd`).
|
|
21
|
+
4. Confirm `brief.md` content did not change.
|
|
22
|
+
5. Do not create manual fallback files under `.prodo/`.
|
|
23
|
+
6. Diagnose internals only if command fails.
|