@syntesseraai/opencode-feature-factory 0.6.14 → 0.6.16

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/README.md CHANGED
@@ -35,9 +35,10 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
35
35
 
36
36
  ## Pipeline Entrypoint
37
37
 
38
- - Use `@pipeline` as the start experience.
39
- - The `@pipeline` agent handles intake and launches `/pipeline/start`.
38
+ - Invoke `/pipeline/start <requirements-brief>` directly from any agent (e.g. `@building`).
39
+ - There is no dedicated `@pipeline` intake agent; the command tree handles orchestration autonomously.
40
40
  - Orchestration is implemented by the command tree under `command/pipeline/` using subtask2 primitives (`return`, `parallel`, `loop`).
41
+ - Orchestration wrapper commands (`/pipeline/start`, `/pipeline/*/run`, `/pipeline/complete`) pin `agent: general` to avoid recursive self-invocation before phase-specific delegation begins.
41
42
  - Coordinator and synthesis model defaults to ChatGPT 5.4 and can be overridden at runtime via `/pipeline/start` input.
42
43
 
43
44
  ## Command Tree
@@ -51,6 +52,7 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
51
52
  - `/mini-loop/start`
52
53
  - `/mini-loop/implementation/run`, `/mini-loop/implementation/build`, `/mini-loop/implementation/review`, `/mini-loop/implementation/gate`
53
54
  - `/mini-loop/documentation/run`, `/mini-loop/documentation/document`, `/mini-loop/documentation/review`, `/mini-loop/documentation/gate`
55
+ - Mini-loop wrapper commands (`/mini-loop/start`, `/mini-loop/*/run`) also pin `agent: general` so they can be safely launched from any caller agent.
54
56
 
55
57
  ## Model Routing
56
58
 
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run documentation mini-loop until gate passes
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 5
6
7
  until: documentation gate is APPROVED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run implementation mini-loop until gate passes
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 10
6
7
  until: implementation gate is APPROVED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Mini-loop two-stage workflow entrypoint
3
3
  subtask: true
4
+ agent: general
4
5
  return:
5
6
  - /mini-loop/implementation/run {as:implementation-phase} $ARGUMENTS
6
7
  - /mini-loop/documentation/run $RESULT[implementation-phase]
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run build phase from approved plan
3
3
  subtask: true
4
+ agent: general
4
5
  return:
5
6
  - /pipeline/building/breakdown {model:anthropic/claude-opus-4-6 && as:build-tasks} $ARGUMENTS
6
7
  - /pipeline/building/validate-batch {model:opencode/gemini-3.1-pro && as:build-batches} $RESULT[build-tasks]
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Finalize pipeline run and summarize outcomes
3
3
  subtask: true
4
+ agent: general
4
5
  ---
5
6
 
6
7
  Finalize the pipeline run.
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run documentation loop after review approval
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 5
6
7
  until: documentation updates are approved by documentation reviewer with zero unresolved documentation issues
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Execute one planning iteration
3
3
  subtask: true
4
+ agent: general
4
5
  parallel:
5
6
  - /pipeline/planning/plan {model:anthropic/claude-opus-4-6 && as:plan-opus} [MODEL_TAG:opus] $ARGUMENTS
6
7
  - /pipeline/planning/plan {model:opencode/gemini-3.1-pro && as:plan-gemini} [MODEL_TAG:gemini] $ARGUMENTS
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run review loop for completed tasks
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 10
6
7
  until: all tasks in the active batch are approved with confidence >=95 and zero unresolved issues
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Pipeline workflow entrypoint
3
3
  subtask: true
4
+ agent: general
4
5
  model: openai/gpt-5.4
5
6
  return:
6
7
  - /pipeline/planning/run {as:planning-phase && loop:5 && until:planning gate is APPROVED or planning gate is BLOCKED and waiting for user confirmation}
@@ -16,7 +17,9 @@ $ARGUMENTS
16
17
 
17
18
  Execution requirements:
18
19
 
19
- 1. Use `{as:name}` and `$RESULT[name]` for phase-to-phase handoff.
20
- 2. Avoid file persistence for intermediate artifacts unless a command explicitly requires audit snapshots.
21
- 3. Use command chaining, parallel fan-out, and loop gates from the `/pipeline/...` command tree.
22
- 4. Do not skip planning, review, and documentation gates.
20
+ 1. You are already inside `/pipeline/start`; do not invoke `/pipeline/start` again.
21
+ 2. Execute the declared return chain directly from this command.
22
+ 3. Use `{as:name}` and `$RESULT[name]` for phase-to-phase handoff.
23
+ 4. Avoid file persistence for intermediate artifacts unless a command explicitly requires audit snapshots.
24
+ 5. Use command chaining, parallel fan-out, and loop gates from the `/pipeline/...` command tree.
25
+ 6. Do not skip planning, review, and documentation gates.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@syntesseraai/opencode-feature-factory",
4
- "version": "0.6.14",
4
+ "version": "0.6.16",
5
5
  "type": "module",
6
6
  "description": "OpenCode plugin for Feature Factory agents - provides sub-agents and skills for validation, review, security, and architecture assessment",
7
7
  "license": "MIT",
@@ -1,47 +0,0 @@
1
- ---
2
- description: Pipeline entrypoint agent that gathers requirements and launches deterministic command workflow.
3
- color: '#6424f8'
4
- tools:
5
- read: true
6
- write: true
7
- edit: true
8
- bash: true
9
- skill: true
10
- task: true
11
- permission:
12
- skill:
13
- '*': allow
14
- task:
15
- planning: allow
16
- building: allow
17
- reviewing: allow
18
- documenting: allow
19
- ff-research: allow
20
- explore: allow
21
- pipeline: allow
22
- ---
23
-
24
- You are the pipeline orchestrator.
25
-
26
- ## Responsibilities
27
-
28
- 1. Gather and confirm requirements.
29
- 2. Start `/pipeline/start {model:openai/gpt-5.4}` with a concise requirements brief.
30
- 3. Report phase transitions and gate outcomes.
31
-
32
- ## Guardrails
33
-
34
- - Keep orchestration in command files under `command/pipeline/`.
35
- - Use result-based chaining (`{as:name}` and `$RESULT[name]`) for intermediate handoff.
36
- - Enforce planning/review/documentation gates and loop limits.
37
-
38
- ## Required Intake
39
-
40
- - Problem statement
41
- - Explicit requirements
42
- - Acceptance criteria
43
- - Scope constraints
44
-
45
- On confirmation, run:
46
-
47
- `/pipeline/start {model:openai/gpt-5.4} <requirements-brief>`