@syntesseraai/opencode-feature-factory 0.13.4 → 0.13.5
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/AGENTS.md +7 -7
- package/README.md +7 -7
- package/agents/building.md +5 -5
- package/agents/{code-review.md → code-reviewing.md} +6 -5
- package/agents/documenting.md +2 -2
- package/agents/feature-factory.md +9 -9
- package/agents/{full-review.md → full-reviewing.md} +16 -21
- package/agents/planning.md +1 -1
- package/bin/ff-deploy.js +2 -2
- package/commands/ff-review.md +1 -1
- package/dist/agent-config.d.ts +2 -2
- package/dist/agent-config.js +2 -2
- package/package.json +1 -1
- package/skills/ff-reviewing-architecture/SKILL.md +1 -1
- package/skills/ff-reviewing-code-quality/SKILL.md +1 -1
- package/skills/ff-reviewing-documentation/SKILL.md +2 -2
- package/skills/ff-reviewing-security/SKILL.md +1 -1
package/AGENTS.md
CHANGED
|
@@ -9,10 +9,10 @@ This file is installed to `~/.config/opencode/AGENTS.md` by `@syntesseraai/openc
|
|
|
9
9
|
- Stage sub-agents with default model routing:
|
|
10
10
|
- `planning` -> `openai/gpt-5.5-fast` (temperature `0.2`)
|
|
11
11
|
- `building` -> `openai/gpt-5.5-fast` (temperature `0.5`)
|
|
12
|
-
- `code-
|
|
12
|
+
- `code-reviewing` -> `openai/gpt-5.5-fast` (temperature `0.6`, reasoning effort `xhigh`)
|
|
13
13
|
- `documenting` -> `github-copilot/gemini-3.1-pro-preview`
|
|
14
|
-
- `full-
|
|
15
|
-
- Specialized agents: `feature-factory`, `planning`, `building`, `code-
|
|
14
|
+
- `full-reviewing` -> `opencode/glm-5.1`
|
|
15
|
+
- Specialized agents: `feature-factory`, `planning`, `building`, `code-reviewing`, `documenting`, and `full-reviewing`.
|
|
16
16
|
- Quick commands: `/ff-review [optional prompt]`, `/ff-document [optional prompt]`, and `/ff-rework [optional prompt]` (all run as main agents on the relevant stage).
|
|
17
17
|
- Skills for planning, shared external research (`ff-research-methods`), command output compression (`ff-oo`), documentation governance (`ff-documentation-rules`), review quality/security/architecture/documentation, GitHub workflows (`ff-github`), reporting templates, and todo management.
|
|
18
18
|
|
|
@@ -23,10 +23,10 @@ This file is installed to `~/.config/opencode/AGENTS.md` by `@syntesseraai/openc
|
|
|
23
23
|
3. Once scope is clear, summarize it in 1-3 bullets; clear imperative requests count as authorization to proceed without a separate confirmation or plan-approval prompt.
|
|
24
24
|
4. Build.
|
|
25
25
|
5. Code Review.
|
|
26
|
-
6. If code-
|
|
26
|
+
6. If code-reviewing feedback requires changes, route back to Build.
|
|
27
27
|
7. Document.
|
|
28
28
|
8. Full Review for combined implementation and documentation gates.
|
|
29
|
-
9. If either full-
|
|
29
|
+
9. If either full-reviewing gate is not approved, route back to Build; finish only when code-reviewing and full-reviewing gates are approved and no addressable follow-ups remain.
|
|
30
30
|
|
|
31
31
|
Each transition carries forward the complete previous-stage last message as `RAW_PREVIOUS_STAGE_OUTPUT` by default. Parsed fields such as `FINAL_PLAN` guide routing and task ordering, but they do not replace the raw stage output. This preserves full context, rationale, and findings between stages. If context limits require truncation, explicitly label the truncation and preserve required gate/status lines and required output sections.
|
|
32
32
|
|
|
@@ -45,8 +45,8 @@ When work changes behavior, workflows, configuration, operational guidance, or r
|
|
|
45
45
|
- Keep `read`/`glob`/`grep` as fallback when codebase-memory MCP is unavailable or the repository has not been indexed.
|
|
46
46
|
- Use `read`, `glob`, and `grep` for targeted file inspection.
|
|
47
47
|
- Writable agents should prefer native `edit` for file updates.
|
|
48
|
-
- Keep `edit` restricted on read-only agents (`planning`, `code-
|
|
49
|
-
- Prefer explicit agent frontmatter
|
|
48
|
+
- Keep `edit` restricted on read-only agents (`planning`, `code-reviewing`, `full-reviewing`).
|
|
49
|
+
- Prefer explicit agent frontmatter restrictions for read-only stages. `code-reviewing` uses `permissions` with a deny-first `bash` policy; `full-reviewing` uses legacy `tools` disablement for GLM compatibility until that model path supports `permissions`.
|
|
50
50
|
- Keep read-only agents from modifying files by disabling `edit` and other write-capable tools in frontmatter.
|
|
51
51
|
- Explicitly disable PTY tools (`pty_spawn`, `pty_write`, `pty_read`, `pty_list`, `pty_kill`) on read-only agents; they must not rely on PTY as a back door.
|
|
52
52
|
- Use `todowrite` for multi-step tasks to keep progress visible.
|
package/README.md
CHANGED
|
@@ -60,10 +60,10 @@ Instead, the `feature-factory` primary agent orchestrates workflows natively by
|
|
|
60
60
|
|
|
61
61
|
- `feature-factory` (orchestrator) -> default model `openai/gpt-5.5-fast`
|
|
62
62
|
- `planning` -> default model `openai/gpt-5.5-fast`
|
|
63
|
-
- `building` -> default model `openai/gpt-5.5-fast`
|
|
64
|
-
- `code-
|
|
63
|
+
- `building` -> default model `openai/gpt-5.5-fast`
|
|
64
|
+
- `code-reviewing` -> default model `openai/gpt-5.5-fast` with temperature `0.6` and reasoning effort `xhigh`
|
|
65
65
|
- `documenting` -> default model `github-copilot/gemini-3.1-pro-preview`
|
|
66
|
-
- `full-
|
|
66
|
+
- `full-reviewing` -> default model `opencode/glm-5.1`
|
|
67
67
|
|
|
68
68
|
### Fixed execution path
|
|
69
69
|
|
|
@@ -87,14 +87,14 @@ The same rule applies to imperative follow-on requests derived from prior workfl
|
|
|
87
87
|
|
|
88
88
|
Writable stage agents (`building`, `documenting`) prefer native `edit` (and `write` for new files) when needed. Read-only agents keep `edit` disabled.
|
|
89
89
|
|
|
90
|
-
Stage-agent code discovery is graph-first: planning/building/code-
|
|
90
|
+
Stage-agent code discovery is graph-first: planning/building/code-reviewing/documenting/full-reviewing prefer codebase-memory MCP tools (`codebase-memory-mcp_search_graph`, `codebase-memory-mcp_get_architecture`, `codebase-memory-mcp_trace_call_path`, `codebase-memory-mcp_get_code_snippet`) for repository-local analysis, and use `gh_grep_searchGitHub` when investigating public GitHub source examples.
|
|
91
91
|
|
|
92
92
|
### Agent tool-access policy
|
|
93
93
|
|
|
94
94
|
Feature Factory agent assets primarily use OpenCode agent frontmatter to keep stage capabilities explicit.
|
|
95
95
|
|
|
96
|
-
- `code-
|
|
97
|
-
- `code-
|
|
96
|
+
- `code-reviewing` uses `permissions` with constrained command-level bash access; `full-reviewing` uses legacy `tools` disablement for GLM compatibility.
|
|
97
|
+
- `code-reviewing` remains read-only with deny-by-default bash and only `oo git status` / `oo git diff` patterns explicitly allowed; `full-reviewing` remains read-only by disabling `write`, `edit`, `task`, `bash`, and all PTY tools through `tools`.
|
|
98
98
|
- Other stage agents may still use more granular permission-based shell allowances where model compatibility allows it.
|
|
99
99
|
|
|
100
100
|
### Plugin auto-handoff safety net
|
|
@@ -120,7 +120,7 @@ The plugin includes an auto-handoff hook that continues deterministic next steps
|
|
|
120
120
|
The plugin installs global custom slash commands in `~/.config/opencode/commands/`:
|
|
121
121
|
|
|
122
122
|
- `/ff-review [optional prompt]`
|
|
123
|
-
- Agent: `full-
|
|
123
|
+
- Agent: `full-reviewing`
|
|
124
124
|
- Subtask: `false` (runs as a main agent)
|
|
125
125
|
- Mode: manual standalone helper (does not continue the full pipeline automatically)
|
|
126
126
|
- Default prompt when no argument is provided: `Review the changes so far`
|
package/agents/building.md
CHANGED
|
@@ -10,8 +10,8 @@ permissions:
|
|
|
10
10
|
skill:
|
|
11
11
|
'*': allow
|
|
12
12
|
task:
|
|
13
|
-
code-
|
|
14
|
-
full-
|
|
13
|
+
code-reviewing: allow
|
|
14
|
+
full-reviewing: allow
|
|
15
15
|
planning: allow
|
|
16
16
|
explore: allow
|
|
17
17
|
bash:
|
|
@@ -42,7 +42,7 @@ You are the building specialist.
|
|
|
42
42
|
- Use normalized, resolved stage handoff context from prior-stage output or existing context.
|
|
43
43
|
- Treat `RAW_PREVIOUS_STAGE_OUTPUT` from Planning as the authoritative full plan context when present. Read the requirements summary, architecture validation, risks, assumptions, testing strategy, and plan-shaping rationale before implementing.
|
|
44
44
|
- Use `FINAL_PLAN` for implementation task ordering, but do not ignore non-`FINAL_PLAN` planning context.
|
|
45
|
-
- For code-
|
|
45
|
+
- For code-reviewing→build or full-reviewing→build rework loops, `RAW_PREVIOUS_STAGE_OUTPUT` contains the full review last message. Preserve and follow that full review output alongside consolidated action bullets so findings, rationale, and gate context are not lost.
|
|
46
46
|
- Never rely on unresolved placeholder aliases in handoff prompts.
|
|
47
47
|
- Do not rely on intermediate artifact files for pipeline progression.
|
|
48
48
|
- Persist only when explicitly requested by the user.
|
|
@@ -114,8 +114,8 @@ When implementation work changes behavior, workflows, commands, configuration, o
|
|
|
114
114
|
|
|
115
115
|
## Delegation Guidance
|
|
116
116
|
|
|
117
|
-
- `@code-
|
|
118
|
-
- `@full-
|
|
117
|
+
- `@code-reviewing`: focused implementation validation before documentation.
|
|
118
|
+
- `@full-reviewing`: comprehensive final validation (code, security, architecture, docs, acceptance).
|
|
119
119
|
- `@planning`: only when requirements become ambiguous during implementation.
|
|
120
120
|
|
|
121
121
|
## External Research
|
|
@@ -3,6 +3,7 @@ description: Code-focused validation agent for first-pass implementation review
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
color: '#14b8a6'
|
|
5
5
|
model: openai/gpt-5.5-fast
|
|
6
|
+
reasoningEffort: xhigh
|
|
6
7
|
permissions:
|
|
7
8
|
write: deny
|
|
8
9
|
edit: deny
|
|
@@ -22,7 +23,7 @@ permissions:
|
|
|
22
23
|
temperature: 0.6
|
|
23
24
|
---
|
|
24
25
|
|
|
25
|
-
You are the code-
|
|
26
|
+
You are the code-reviewing specialist.
|
|
26
27
|
|
|
27
28
|
## Reasoning Depth
|
|
28
29
|
|
|
@@ -34,7 +35,7 @@ You are the code-review specialist.
|
|
|
34
35
|
- Validate implementation outputs before documentation begins.
|
|
35
36
|
- Apply code-focused scope based on context: acceptance, code quality, security, architecture, regression risk, and test coverage.
|
|
36
37
|
- Return actionable findings with severity and confidence.
|
|
37
|
-
- Do not block on missing documentation updates; documentation completeness is validated by `@full-
|
|
38
|
+
- Do not block on missing documentation updates; documentation completeness is validated by `@full-reviewing` after the documenting stage.
|
|
38
39
|
|
|
39
40
|
## File Review Guidance
|
|
40
41
|
|
|
@@ -107,8 +108,8 @@ When acting as code gate reviewer, output status line exactly:
|
|
|
107
108
|
|
|
108
109
|
- Use normalized, resolved handoff context (summary/status/action items/issues plus full resolved prior output by default) rather than file-based artifacts.
|
|
109
110
|
- Treat `RAW_PREVIOUS_STAGE_OUTPUT` from Building as the complete build last message unless it is explicitly labeled as truncated.
|
|
110
|
-
- In code-
|
|
111
|
+
- In code-reviewing→build rework loops, return findings with enough context for Build to receive the full review output, not only consolidated action bullets.
|
|
111
112
|
- Never rely on unresolved placeholder aliases in handoff prompts.
|
|
112
113
|
- Keep reports concise, evidence-based, and directly actionable for implementation follow-up.
|
|
113
|
-
- Do not delegate to implementation stages from code-
|
|
114
|
-
- Never perform implementation or file-modifying work in code-
|
|
114
|
+
- Do not delegate to implementation stages from code-reviewing mode.
|
|
115
|
+
- Never perform implementation or file-modifying work in code-reviewing mode.
|
package/agents/documenting.md
CHANGED
|
@@ -14,7 +14,7 @@ permissions:
|
|
|
14
14
|
skill:
|
|
15
15
|
'*': allow
|
|
16
16
|
task:
|
|
17
|
-
full-
|
|
17
|
+
full-reviewing: allow
|
|
18
18
|
explore: allow
|
|
19
19
|
bash:
|
|
20
20
|
'*': ask
|
|
@@ -157,7 +157,7 @@ Update documentation in the same change whenever you modify:
|
|
|
157
157
|
1. Do not change product behavior while editing docs.
|
|
158
158
|
2. Update all impacted docs, indexes, and `README.md` navigation — not just one file.
|
|
159
159
|
3. Preserve or improve discoverability; every new or moved doc must be reachable through the index chain.
|
|
160
|
-
4. Escalate ambiguous behavior or conflicting sources to `@full-
|
|
160
|
+
4. Escalate ambiguous behavior or conflicting sources to `@full-reviewing`.
|
|
161
161
|
|
|
162
162
|
## Required Output Sections
|
|
163
163
|
|
|
@@ -16,8 +16,8 @@ permissions:
|
|
|
16
16
|
'*': allow
|
|
17
17
|
task:
|
|
18
18
|
building: allow
|
|
19
|
-
code-
|
|
20
|
-
full-
|
|
19
|
+
code-reviewing: allow
|
|
20
|
+
full-reviewing: allow
|
|
21
21
|
planning: allow
|
|
22
22
|
documenting: allow
|
|
23
23
|
---
|
|
@@ -40,10 +40,10 @@ For any substantive user request, prefer sub-agent execution over direct handlin
|
|
|
40
40
|
|
|
41
41
|
- `@planning`: clarify scope, risks, assumptions, and produce `FINAL_PLAN`. The full planning response is downstream context; `FINAL_PLAN` is a structured section, not the only handoff content.
|
|
42
42
|
- `@building`: implement code changes, run commands/tests, and report results.
|
|
43
|
-
- `@code-
|
|
43
|
+
- `@code-reviewing`: perform first-pass implementation validation and return the code-review gate.
|
|
44
44
|
- `@documenting`: update docs to match shipped behavior after code-review approval.
|
|
45
|
-
- `@full-
|
|
46
|
-
- Do not use built-in `@explore`; route exploration-like investigation and validation work to `@code-
|
|
45
|
+
- `@full-reviewing`: validate implementation and documentation together for final gates.
|
|
46
|
+
- Do not use built-in `@explore`; route exploration-like investigation and validation work to `@code-reviewing` or `@full-reviewing`.
|
|
47
47
|
- Do not use built-in `@general`; route general implementation, maintenance, and rework to `@building`.
|
|
48
48
|
- For external dependency or standards uncertainty, instruct stage agents to load the shared `ff-research-methods` skill.
|
|
49
49
|
|
|
@@ -162,7 +162,7 @@ CURRENT_STAGE_OBJECTIVE:
|
|
|
162
162
|
|
|
163
163
|
Never pass unresolved placeholder aliases (for example unresolved result-alias syntax) in stage handoff prompts.
|
|
164
164
|
|
|
165
|
-
`RAW_PREVIOUS_STAGE_OUTPUT` is the complete previous-stage last message by default. Parsed summaries, action items, open issues, gates, verdicts, and `FINAL_PLAN` are routing aids and quick references; they must not replace the raw prior-stage context. Preserve full outputs for planning -> building, building -> code-
|
|
165
|
+
`RAW_PREVIOUS_STAGE_OUTPUT` is the complete previous-stage last message by default. Parsed summaries, action items, open issues, gates, verdicts, and `FINAL_PLAN` are routing aids and quick references; they must not replace the raw prior-stage context. Preserve full outputs for planning -> building, building -> code-reviewing, code-reviewing -> building rework, code-reviewing -> documenting, documenting -> full-reviewing, and full-reviewing -> build rework loops so downstream agents retain discovered context, rationale, assumptions, validations, and findings.
|
|
166
166
|
|
|
167
167
|
Only truncate `RAW_PREVIOUS_STAGE_OUTPUT` when platform context limits make the full prior-stage output impossible to include. If truncation is unavoidable, clearly label it as truncated, preserve all required gate/status lines and required output sections, and summarize omitted content without presenting the summary as the full raw output.
|
|
168
168
|
|
|
@@ -205,14 +205,14 @@ When planning is approved, parse `PLANNING_GATE` and `FINAL_PLAN` for routing an
|
|
|
205
205
|
For each iteration `n`:
|
|
206
206
|
|
|
207
207
|
1. Call `@building {as:build_iter_n}` using full `RAW_PREVIOUS_STAGE_OUTPUT`, `FINAL_PLAN` task ordering, and prior action items.
|
|
208
|
-
2. Call `@code-
|
|
208
|
+
2. Call `@code-reviewing {as:code_review_iter_n}` for implementation review with full Build output preserved.
|
|
209
209
|
3. Read code-review gate lines exactly as:
|
|
210
210
|
- `CODE_REVIEW_GATE=APPROVED|REWORK|ESCALATE`
|
|
211
211
|
4. If `CODE_REVIEW_GATE=REWORK`, route back to Build with consolidated code-review action items and the full Code Review output preserved as raw rework context.
|
|
212
212
|
5. If `CODE_REVIEW_GATE=ESCALATE`, stop and escalate to the user with the full Code Review output preserved.
|
|
213
213
|
6. If `CODE_REVIEW_GATE=APPROVED` but explicit addressable `OPEN_ISSUES`, `NON_BLOCKING_ISSUES`, action items, minor issues, or non-blocking follow-ups remain, route back to Build with consolidated code-review action items and the full Code Review output preserved as raw rework context.
|
|
214
214
|
7. Call `@documenting {as:doc_iter_n}` using the full Build output plus approved Code Review output as `RAW_PREVIOUS_STAGE_OUTPUT` and current implementation context.
|
|
215
|
-
8. Call `@full-
|
|
215
|
+
8. Call `@full-reviewing {as:full_review_iter_n}` for combined implementation and documentation review with full Documentation output and relevant Build and Code Review context preserved.
|
|
216
216
|
9. Read full-review gate lines exactly as:
|
|
217
217
|
- `REVIEW_GATE=APPROVED|REWORK|ESCALATE`
|
|
218
218
|
- `DOCUMENTATION_GATE=APPROVED|REWORK|ESCALATE`
|
|
@@ -285,7 +285,7 @@ Rules:
|
|
|
285
285
|
- Omit `RECOMMENDED_NEXT_STEP` when the recommendation is "None", "Nothing", "No further steps", or similar.
|
|
286
286
|
- In the fixed workflow, successful Build continues to Code Review; approved Code Review continues to Document; successful Document continues to Full Review.
|
|
287
287
|
- Successful Build, approved Code Review, and successful Document are stage-complete but not workflow-complete, so they normally require `RECOMMENDED_NEXT_STEP`.
|
|
288
|
-
- For normal workflow progression, continue by delegating to stage agents directly (`@building`, `@code-
|
|
288
|
+
- For normal workflow progression, continue by delegating to stage agents directly (`@building`, `@code-reviewing`, `@documenting`, `@full-reviewing`), not by invoking slash commands such as `/ff-review`, `/ff-document`, or `/ff-rework`.
|
|
289
289
|
|
|
290
290
|
Examples:
|
|
291
291
|
|
|
@@ -3,25 +3,20 @@ description: Full validation agent for code and documentation. Performs acceptan
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
color: '#8b5cf6'
|
|
5
5
|
model: opencode/glm-5.1
|
|
6
|
-
|
|
7
|
-
write:
|
|
8
|
-
edit:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
pty_spawn: deny
|
|
18
|
-
pty_write: deny
|
|
19
|
-
pty_read: deny
|
|
20
|
-
pty_list: deny
|
|
21
|
-
pty_kill: deny
|
|
6
|
+
tools:
|
|
7
|
+
write: false
|
|
8
|
+
edit: false
|
|
9
|
+
apply_patch: false
|
|
10
|
+
bash: false
|
|
11
|
+
task: false
|
|
12
|
+
pty_spawn: false
|
|
13
|
+
pty_write: false
|
|
14
|
+
pty_read: false
|
|
15
|
+
pty_list: false
|
|
16
|
+
pty_kill: false
|
|
22
17
|
---
|
|
23
18
|
|
|
24
|
-
You are the full-
|
|
19
|
+
You are the full-reviewing specialist.
|
|
25
20
|
|
|
26
21
|
## Reasoning Depth
|
|
27
22
|
|
|
@@ -107,7 +102,7 @@ For external/library uncertainty needed to validate findings, load and follow `f
|
|
|
107
102
|
|
|
108
103
|
## Gate Contract
|
|
109
104
|
|
|
110
|
-
When acting as full-
|
|
105
|
+
When acting as full-reviewing gate reviewer, output status lines exactly:
|
|
111
106
|
|
|
112
107
|
- `REVIEW_GATE=APPROVED|REWORK|ESCALATE`
|
|
113
108
|
- `DOCUMENTATION_GATE=APPROVED|REWORK|ESCALATE`
|
|
@@ -116,8 +111,8 @@ When acting as full-review gate reviewer, output status lines exactly:
|
|
|
116
111
|
|
|
117
112
|
- Use normalized, resolved handoff context (summary/status/action items/issues plus full resolved prior output by default) rather than file-based artifacts.
|
|
118
113
|
- Treat `RAW_PREVIOUS_STAGE_OUTPUT` as the complete prior-stage last message unless it is explicitly labeled as truncated. Preserve the full Documentation output plus relevant Build and Code Review context.
|
|
119
|
-
- In full-
|
|
114
|
+
- In full-reviewing→build rework loops, return findings with enough context for Build to receive the full review output, not only consolidated action bullets.
|
|
120
115
|
- Never rely on unresolved placeholder aliases in handoff prompts.
|
|
121
116
|
- Keep reports concise, evidence-based, and directly actionable for implementation follow-up.
|
|
122
|
-
- Do not delegate to implementation stages from full-
|
|
123
|
-
- Never perform implementation or file-modifying work in full-
|
|
117
|
+
- Do not delegate to implementation stages from full-reviewing mode.
|
|
118
|
+
- Never perform implementation or file-modifying work in full-reviewing mode.
|
package/agents/planning.md
CHANGED
|
@@ -117,7 +117,7 @@ When producing plans, include:
|
|
|
117
117
|
|
|
118
118
|
## Delegation Guidance
|
|
119
119
|
|
|
120
|
-
- Do not delegate to `@building`, `@code-
|
|
120
|
+
- Do not delegate to `@building`, `@code-reviewing`, `@documenting`, `@full-reviewing`, `@planning`, or `@explore`.
|
|
121
121
|
- Never perform implementation or file-modifying work in planning mode.
|
|
122
122
|
|
|
123
123
|
## Gate Contract
|
package/bin/ff-deploy.js
CHANGED
|
@@ -475,8 +475,8 @@ async function deploy() {
|
|
|
475
475
|
console.log(' - Restart OpenCode or run /reload to load new agents and commands');
|
|
476
476
|
console.log(' - Use @planning to create implementation plans');
|
|
477
477
|
console.log(' - Use @building to execute plans');
|
|
478
|
-
console.log(' - Use @code-
|
|
479
|
-
console.log(' - Use @full-
|
|
478
|
+
console.log(' - Use @code-reviewing for first-pass code validation');
|
|
479
|
+
console.log(' - Use @full-reviewing for combined code and documentation validation');
|
|
480
480
|
console.log(' - Use /ff-review, /ff-document, or /ff-rework for quick subtask runs');
|
|
481
481
|
console.log(' - Load ff-research-methods in stage agents for external research');
|
|
482
482
|
}
|
package/commands/ff-review.md
CHANGED
package/dist/agent-config.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Built-in opencode agents that should be disabled when the Feature Factory
|
|
3
3
|
* plugin is active. These are the standard opencode agents that overlap with
|
|
4
|
-
* the plugin's own agents (planning, building, code-
|
|
4
|
+
* the plugin's own agents (planning, building, code-reviewing, full-reviewing) or should be routed
|
|
5
5
|
* through Feature Factory stage agents instead.
|
|
6
6
|
*
|
|
7
7
|
* Note: This disables built-in `build`, `plan`, `explore`, and `general` agents.
|
|
8
|
-
* The plugin's own agents (planning, building, code-
|
|
8
|
+
* The plugin's own agents (planning, building, code-reviewing, full-reviewing) remain active.
|
|
9
9
|
*/
|
|
10
10
|
export declare const DEFAULT_DISABLED_AGENTS: Record<string, {
|
|
11
11
|
disable: boolean;
|
package/dist/agent-config.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Built-in opencode agents that should be disabled when the Feature Factory
|
|
3
3
|
* plugin is active. These are the standard opencode agents that overlap with
|
|
4
|
-
* the plugin's own agents (planning, building, code-
|
|
4
|
+
* the plugin's own agents (planning, building, code-reviewing, full-reviewing) or should be routed
|
|
5
5
|
* through Feature Factory stage agents instead.
|
|
6
6
|
*
|
|
7
7
|
* Note: This disables built-in `build`, `plan`, `explore`, and `general` agents.
|
|
8
|
-
* The plugin's own agents (planning, building, code-
|
|
8
|
+
* The plugin's own agents (planning, building, code-reviewing, full-reviewing) remain active.
|
|
9
9
|
*/
|
|
10
10
|
export const DEFAULT_DISABLED_AGENTS = {
|
|
11
11
|
build: { disable: true },
|
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.13.
|
|
4
|
+
"version": "0.13.5",
|
|
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",
|
|
@@ -10,7 +10,7 @@ metadata:
|
|
|
10
10
|
|
|
11
11
|
# Reviewing Architecture Skill
|
|
12
12
|
|
|
13
|
-
Use this skill when `@code-
|
|
13
|
+
Use this skill when `@code-reviewing` or `@full-reviewing` evaluates architectural quality and system-level trade-offs.
|
|
14
14
|
|
|
15
15
|
## Focus Areas
|
|
16
16
|
|
|
@@ -10,7 +10,7 @@ metadata:
|
|
|
10
10
|
|
|
11
11
|
# Reviewing Code Quality Skill
|
|
12
12
|
|
|
13
|
-
Use this skill when `@code-
|
|
13
|
+
Use this skill when `@code-reviewing` or `@full-reviewing` is validating implementation quality.
|
|
14
14
|
|
|
15
15
|
## Focus Areas
|
|
16
16
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ff-reviewing-documentation
|
|
3
|
-
description: Documentation validation checklist for full-
|
|
3
|
+
description: Documentation validation checklist for full-reviewing agents. Use for accuracy, completeness, and repository consistency checks.
|
|
4
4
|
license: MIT
|
|
5
5
|
compatibility: opencode
|
|
6
6
|
metadata:
|
|
@@ -10,7 +10,7 @@ metadata:
|
|
|
10
10
|
|
|
11
11
|
# Reviewing Documentation Skill
|
|
12
12
|
|
|
13
|
-
Use this skill when `@full-
|
|
13
|
+
Use this skill when `@full-reviewing` validates documentation-stage outputs.
|
|
14
14
|
|
|
15
15
|
## Focus Areas
|
|
16
16
|
|
|
@@ -10,7 +10,7 @@ metadata:
|
|
|
10
10
|
|
|
11
11
|
# Reviewing Security Skill
|
|
12
12
|
|
|
13
|
-
Use this skill when `@code-
|
|
13
|
+
Use this skill when `@code-reviewing` or `@full-reviewing` performs security-focused validation.
|
|
14
14
|
|
|
15
15
|
## Focus Areas
|
|
16
16
|
|