valent-pipeline 0.3.0 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valent-pipeline",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "v3 multi-agent AI pipeline for software development lifecycle",
5
5
  "type": "module",
6
6
  "bin": {
@@ -3,10 +3,12 @@
3
3
  # Write production code, run builds, install dependencies.
4
4
  # Model is set at spawn time by Lead from pipeline-config.yaml model tiers.
5
5
 
6
- [agent]
7
6
  name = "code-worker"
8
- type = "worker"
7
+ description = "Write production code, run builds, and install dependencies. Used by implementation agents (BEND, FEND, IAC, MOBILE, DATA, MCP-DEV, LIBDEV, DOCGEN, UXA)."
9
8
  sandbox_mode = "workspace-write"
10
-
11
- [agent.sandbox]
12
- allow_network = true
9
+ developer_instructions = """
10
+ You are a pipeline worker agent. Follow the step instructions provided at spawn time exactly.
11
+ Read your assigned story spec and implement code changes as directed.
12
+ Run builds and tests to validate your work before handing off.
13
+ """
14
+ nickname_candidates = ["Forge", "Anvil", "Spark", "Bolt", "Rivet", "Lathe"]
@@ -3,7 +3,12 @@
3
3
  # Reactive service agent. Reads knowledge base, writes query responses.
4
4
  # Model is set at spawn time by Lead from pipeline-config.yaml model tiers.
5
5
 
6
- [agent]
7
6
  name = "knowledge-service"
8
- type = "default"
7
+ description = "Query and maintain the project knowledge base. Used by the Knowledge agent."
9
8
  sandbox_mode = "workspace-write"
9
+ developer_instructions = """
10
+ You are a pipeline knowledge service agent. Follow the step instructions provided at spawn time exactly.
11
+ Read the knowledge base, curated files, and correction directives to answer queries from other agents.
12
+ Write knowledge index updates as directed.
13
+ """
14
+ nickname_candidates = ["Index", "Archive", "Codex", "Library", "Vault", "Ledger"]
@@ -1,12 +1,14 @@
1
1
  # Valent Pipeline — Review Explorer Agent Type
2
2
  # Used by: CRITIC, JUDGE
3
- # Read-only code review agents. Only write to story output directory.
3
+ # Code review agents. Only write to story output directory.
4
4
  # Model is set at spawn time by Lead from pipeline-config.yaml model tiers.
5
5
 
6
- [agent]
7
6
  name = "review-explorer"
8
- type = "explorer"
7
+ description = "Review code changes and produce verdicts. Used by review agents (CRITIC, JUDGE)."
9
8
  sandbox_mode = "read-only"
10
-
11
- [agent.sandbox]
12
- writable_roots = ["./stories"]
9
+ developer_instructions = """
10
+ You are a pipeline review agent. Follow the step instructions provided at spawn time exactly.
11
+ Read code diffs, test results, and story specs to produce your review verdict.
12
+ Write output only to the story output directory as directed.
13
+ """
14
+ nickname_candidates = ["Raven", "Sage", "Arbiter", "Oracle", "Vigil", "Sentry"]
@@ -3,7 +3,12 @@
3
3
  # Read-heavy agents that analyze inputs and produce specification documents.
4
4
  # Model is set at spawn time by Lead from pipeline-config.yaml model tiers.
5
5
 
6
- [agent]
7
6
  name = "spec-explorer"
8
- type = "explorer"
7
+ description = "Analyze inputs and produce specification documents. Used by read-heavy agents (REQS, QA-A, READINESS)."
9
8
  sandbox_mode = "workspace-write"
9
+ developer_instructions = """
10
+ You are a pipeline explorer agent. Follow the step instructions provided at spawn time exactly.
11
+ Read project inputs, specs, and context files to produce your deliverable.
12
+ Write output documents to the story output directory as directed.
13
+ """
14
+ nickname_candidates = ["Scout", "Lens", "Prism", "Beacon", "Compass", "Atlas"]
@@ -3,11 +3,12 @@
3
3
  # Run test suites, start local servers, capture screenshots.
4
4
  # Model is set at spawn time by Lead from pipeline-config.yaml model tiers.
5
5
 
6
- [agent]
7
6
  name = "test-worker"
8
- type = "worker"
7
+ description = "Run test suites, start local servers, and validate quality. Used by test agents (QA-B, PMCP)."
9
8
  sandbox_mode = "workspace-write"
10
-
11
- [agent.sandbox]
12
- allow_network = true
13
- allow_local_binding = true
9
+ developer_instructions = """
10
+ You are a pipeline test worker agent. Follow the step instructions provided at spawn time exactly.
11
+ Execute test suites, capture results, file bugs, and produce test reports.
12
+ You may start local servers and bind to localhost ports as needed for E2E testing.
13
+ """
14
+ nickname_candidates = ["Probe", "Gauge", "Litmus", "Assay", "Crucible", "Tester"]
@@ -5,6 +5,7 @@
5
5
  sandbox_mode = "workspace-write"
6
6
 
7
7
  # Thread limits (matches pipeline-config.yaml runtime.codex.max_concurrent_agents)
8
+ [agents]
8
9
  max_threads = 6
9
10
 
10
11
  # MCP servers (uncomment for Knowledge Option C — see runtime.md)