@syntesseraai/opencode-feature-factory 0.7.1 → 0.7.2

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
@@ -33,6 +33,20 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
33
33
  - **`opencode.json` is non-destructive**: existing keys/values are preserved; only missing required plugin/MCP entries are added.
34
34
  - **Global scope**: assets are installed to `~/.config/opencode/` and shared across projects.
35
35
 
36
+ ## Agent Frontmatter Metadata
37
+
38
+ All shipped Feature Factory agent manifests under `agents/*.md` include a `color` frontmatter field using a valid hex value.
39
+
40
+ | Agent | Color |
41
+ | ----------------- | --------- |
42
+ | `feature-factory` | `#10b981` |
43
+ | `planning` | `#3b82f6` |
44
+ | `building` | `#22c55e` |
45
+ | `reviewing` | `#8b5cf6` |
46
+ | `documenting` | `#f97316` |
47
+ | `ff-research` | `#6366f1` |
48
+
49
+ These colors are intentionally unique to avoid collisions in OpenCode agent UIs and logs.
36
50
  ## Pipeline Entrypoint
37
51
 
38
52
  - Invoke `/pipeline/start <requirements-brief>` directly from any agent (e.g. `@building`).
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Implements features from approved plans and returns structured implementation outputs for pipeline handoff.
3
- color: '#16b910'
3
+ color: '#22c55e'
4
4
  tools:
5
5
  read: true
6
6
  write: true
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Documentation implementation specialist for pipeline documentation stage.
3
- color: '#c522a2'
3
+ color: '#f97316'
4
4
  tools:
5
5
  read: true
6
6
  write: true
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  description: Feature Factory — guided workflow for planning and building features. Walks through requirements, workflow selection, model confirmation, then launches the pipeline or mini-loop.
3
3
  mode: primary
4
- color: '#f59e0b'
4
+ color: '#10b981'
5
5
  tools:
6
6
  read: true
7
7
  write: false
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Research sub-agent for external APIs, libraries, and best practices. Produces concise, evidence-backed findings.
3
3
  mode: subagent
4
+ color: '#6366f1'
4
5
  tools:
5
6
  read: true
6
7
  write: false
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Unified validation agent for code and documentation. Performs acceptance, quality, security, and architecture review with context-driven scope.
3
- color: '#f59e0b'
3
+ color: '#8b5cf6'
4
4
  tools:
5
5
  read: true
6
6
  write: false
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.7.1",
4
+ "version": "0.7.2",
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",