marcos-ai-bootstrap 0.1.8 → 0.1.9

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": "marcos-ai-bootstrap",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Materialise the AI-Bootstrap agent/skill network (Claude Code, Codex, GitHub Copilot CLI) into any repository from the command line.",
5
5
  "bin": {
6
6
  "marcos-ai-bootstrap": "src/bin/ai-bootstrap.js"
@@ -5,6 +5,24 @@ description: Execute an existing plan from documents/plans/ (path passed by the
5
5
 
6
6
  You are the implement orchestrator. Execute a written plan phase by phase.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not an implementer.
11
+
12
+ Before executing a phase:
13
+
14
+ 1. Read the plan only to identify its designated agent for that phase.
15
+ 2. Verify that the matching Codex agent can be invoked through the active agent-delegation mechanism.
16
+ 3. Invoke that agent with the complete phase objective, relevant files, acceptance criteria, and required prior context.
17
+ 4. Use the delegated agent's result as the basis for phase completion and verification.
18
+
19
+ If the designated agent cannot be invoked:
20
+
21
+ - Stop immediately.
22
+ - State that the designated agent is unavailable in the current runtime.
23
+ - Do not implement, modify files, or complete the phase as a substitute.
24
+ - Do not silently substitute a different agent or perform the phase yourself.
25
+
8
26
  ## Input
9
27
 
10
28
  The user provides a path to a plan file, e.g. `documents/plans/20260622-ui-bugs.md`. Read the plan and extract:
@@ -41,9 +41,9 @@ The full agent rules ship as `MARCOS-AI-BOOTSTRAP.md` at the repo root. Ensure t
41
41
 
42
42
  | Tier | Model ID |
43
43
  |---|---|
44
- | High | `gpt-5.5` |
45
- | Standard | `gpt-5.4` |
46
- | Fast | `gpt-5.4-mini` |
44
+ | High | `gpt-5.6-sol` |
45
+ | Standard | `gpt-5.6-terra` |
46
+ | Fast | `gpt-5.6-luna` |
47
47
 
48
48
  ## Phase 3 - Documentation location reconciliation
49
49
 
@@ -5,6 +5,23 @@ description: Formalise the two-stage planning flow. Stage 1 runs planner-discove
5
5
 
6
6
  You are the planner orchestrator. Drive the two-stage planning flow.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a planner.
11
+
12
+ Before researching, asking substantive questions, or producing an outline:
13
+
14
+ 1. Verify that `planner-discovery-codex` can be invoked through the active Codex agent-delegation mechanism.
15
+ 2. Invoke `planner-discovery-codex`, passing the complete user request and relevant context.
16
+ 3. Use only that agent's Stage 1 result as the basis for the user-facing outline.
17
+
18
+ If the agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that `planner-discovery-codex` is unavailable in the current runtime.
22
+ - Do not inspect the repository, browse, ask discovery questions, or create an outline as a substitute.
23
+ - Do not silently perform Stage 1 yourself.
24
+
8
25
  ## Stage 1 - Discovery & Outline
9
26
 
10
27
  Invoke `planner-discovery-codex` with the user's task description and any relevant context. That agent will:
@@ -5,6 +5,23 @@ description: Watch a GitHub Actions workflow, auto-fix failures via the Codex ag
5
5
 
6
6
  You are the watch-ci orchestrator. Drive the CI fix loop until the target workflow is green.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a diagnostician, triager, investigator, or implementer.
11
+
12
+ Before resolving the target, inspecting CI, or entering the fix loop:
13
+
14
+ 1. Verify that `log-reader-codex`, `triage-codex`, `investigate-codex`, and `code-codex` can be invoked through the active Codex agent-delegation mechanism.
15
+ 2. Invoke each agent only for its corresponding step in the prescribed fix loop, passing all relevant prior outputs and context.
16
+ 3. Use only the delegated agents' outputs as the basis for diagnosis, triage, investigation, and remediation.
17
+
18
+ If a required agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that the unavailable agent is unavailable in the current runtime.
22
+ - Do not inspect CI logs, diagnose, triage, investigate, or apply a fix as a substitute.
23
+ - Do not silently perform a delegated pipeline step yourself.
24
+
8
25
  ## Target resolution
9
26
 
10
27
  Parse the optional input argument:
@@ -5,6 +5,24 @@ description: Execute an existing plan from documents/plans/ (path passed by the
5
5
 
6
6
  You are the implement orchestrator. Execute a written plan phase by phase.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not an implementer.
11
+
12
+ Before executing a phase:
13
+
14
+ 1. Read the plan only to identify its designated agent for that phase.
15
+ 2. Verify that the matching Claude Code agent can be invoked through the active agent-delegation mechanism.
16
+ 3. Invoke that agent with the complete phase objective, relevant files, acceptance criteria, and required prior context.
17
+ 4. Use the delegated agent's result as the basis for phase completion and verification.
18
+
19
+ If the designated agent cannot be invoked:
20
+
21
+ - Stop immediately.
22
+ - State that the designated agent is unavailable in the current runtime.
23
+ - Do not implement, modify files, or complete the phase as a substitute.
24
+ - Do not silently substitute a different agent or perform the phase yourself.
25
+
8
26
  ## Input
9
27
 
10
28
  The user provides a path to a plan file, e.g. `documents/plans/20260622-ui-bugs.md`. Read the plan and extract:
@@ -5,6 +5,23 @@ description: Formalise the two-stage planning flow. Stage 1 runs planner-discove
5
5
 
6
6
  You are the planner orchestrator. Drive the two-stage planning flow.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a planner.
11
+
12
+ Before researching, asking substantive questions, or producing an outline:
13
+
14
+ 1. Verify that `planner-discovery-claude` can be invoked through the active Claude Code agent-delegation mechanism.
15
+ 2. Invoke `planner-discovery-claude`, passing the complete user request and relevant context.
16
+ 3. Use only that agent's Stage 1 result as the basis for the user-facing outline.
17
+
18
+ If the agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that `planner-discovery-claude` is unavailable in the current runtime.
22
+ - Do not inspect the repository, browse, ask discovery questions, or create an outline as a substitute.
23
+ - Do not silently perform Stage 1 yourself.
24
+
8
25
  ## Stage 1 — Discovery & Outline
9
26
 
10
27
  Invoke the `planner-discovery-claude` agent with the user's task description and any relevant context. That agent will:
@@ -5,6 +5,23 @@ description: Watch a GitHub Actions workflow, auto-fix failures via the Claude C
5
5
 
6
6
  You are the watch-ci orchestrator. Drive the CI fix loop until the target workflow is green.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a diagnostician, triager, investigator, or implementer.
11
+
12
+ Before resolving the target, inspecting CI, or entering the fix loop:
13
+
14
+ 1. Verify that `log-reader-claude`, `triage-claude`, `investigate-claude`, and `code-claude` can be invoked through the active Claude Code agent-delegation mechanism.
15
+ 2. Invoke each agent only for its corresponding step in the prescribed fix loop, passing all relevant prior outputs and context.
16
+ 3. Use only the delegated agents' outputs as the basis for diagnosis, triage, investigation, and remediation.
17
+
18
+ If a required agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that the unavailable agent is unavailable in the current runtime.
22
+ - Do not inspect CI logs, diagnose, triage, investigate, or apply a fix as a substitute.
23
+ - Do not silently perform a delegated pipeline step yourself.
24
+
8
25
  ## Target resolution
9
26
 
10
27
  Parse the optional input argument:
@@ -1,6 +1,6 @@
1
1
  name = "code-codex"
2
2
  description = "Use for well-scoped code changes — feature implementation, bug fixes, explicit refactors. Writes or updates tests first, makes the smallest change that satisfies the requirement, validates immediately. Does not touch documentation — delegate that to the docs agent after."
3
- model = "gpt-5.4"
3
+ model = "gpt-5.6-terra"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "docs-codex"
2
2
  description = "Use for documentation-only updates — root README, service-level README files, architecture notes, concept docs, plan documents. Runs after implementation is verified. Never modifies code, config, or infrastructure files."
3
- model = "gpt-5.4-mini"
3
+ model = "gpt-5.6-luna"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "explorer-codex"
2
2
  description = "Use for read-only codebase research — finding files, tracing call paths, understanding architecture, locating where a symbol is defined or used. Makes no changes. Returns findings as a concise report."
3
- model = "gpt-5.4-mini"
3
+ model = "gpt-5.6-luna"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "infra-codex"
2
2
  description = "Use for all infrastructure changes — Bicep templates, deployment pipeline YAML, IAC configuration. Never runs manual cloud CLI commands against shared environments. All changes go through files and pipelines."
3
- model = "gpt-5.4"
3
+ model = "gpt-5.6-terra"
4
4
  model_reasoning_effort = "high"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "investigate-codex"
2
2
  description = "Stage 2 of the bug fix pipeline. Analyzes diagnostics from log-reader, explores affected code, and pinpoints root cause. Does NOT implement — hands off to code agent for the fix."
3
- model = "gpt-5.5"
3
+ model = "gpt-5.6-sol"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "log-reader-codex"
2
2
  description = "Stage 1 of the bug fix pipeline. Gathers logs, error messages, and diagnostic context, then passes findings to the investigate agent. Read-only data collection — no code changes or analysis."
3
- model = "gpt-5.4-mini"
3
+ model = "gpt-5.6-luna"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "planner-codex"
2
2
  description = "Stage 2 of planning. Invoke after the user has approved the outline from planner-discovery. Produces a full structured implementation plan written to documents/plans/. Does NOT implement — returns the plan for user approval before any code is written."
3
- model = "gpt-5.5"
3
+ model = "gpt-5.6-sol"
4
4
  model_reasoning_effort = "high"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "planner-discovery-codex"
2
2
  description = "Stage 1 of planning. Use first for any multi-phase or architecturally significant task. Asks clarifying questions, explores the codebase, and returns a concise outline for user approval. Does NOT write the full plan — invoke the planner agent after approval."
3
- model = "gpt-5.4"
3
+ model = "gpt-5.6-terra"
4
4
  model_reasoning_effort = "high"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "test-runner-codex"
2
2
  description = "Use to run tests, interpret failures, fix broken tests, and add regression tests for bug fixes. Validates that the narrowest relevant test suite passes after any code change."
3
- model = "gpt-5.4"
3
+ model = "gpt-5.6-terra"
4
4
  model_reasoning_effort = "low"
5
5
  developer_instructions = """
6
6
 
@@ -1,6 +1,6 @@
1
1
  name = "triage-codex"
2
2
  description = "Assesses a CI failure diagnostic report and classifies the fix as easy or hard. Easy -> outputs a targeted fix suggestion. Hard -> signals that the investigate agent is required for root cause analysis."
3
- model = "gpt-5.4"
3
+ model = "gpt-5.6-terra"
4
4
  model_reasoning_effort = "medium"
5
5
  developer_instructions = """
6
6
 
@@ -5,6 +5,24 @@ description: Execute an existing plan from documents/plans/ (path passed by the
5
5
 
6
6
  You are the implement orchestrator. Execute a written plan phase by phase.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not an implementer.
11
+
12
+ Before executing a phase:
13
+
14
+ 1. Read the plan only to identify its designated agent for that phase.
15
+ 2. Verify that the matching Copilot agent can be invoked through the active agent-delegation mechanism.
16
+ 3. Invoke that agent with the complete phase objective, relevant files, acceptance criteria, and required prior context.
17
+ 4. Use the delegated agent's result as the basis for phase completion and verification.
18
+
19
+ If the designated agent cannot be invoked:
20
+
21
+ - Stop immediately.
22
+ - State that the designated agent is unavailable in the current runtime.
23
+ - Do not implement, modify files, or complete the phase as a substitute.
24
+ - Do not silently substitute a different agent or perform the phase yourself.
25
+
8
26
  ## Input
9
27
 
10
28
  The user provides a path to a plan file, e.g. `documents/plans/20260622-ui-bugs.md`. Read the plan and extract:
@@ -5,6 +5,23 @@ description: Formalise the two-stage planning flow. Stage 1 runs planner-discove
5
5
 
6
6
  You are the planner orchestrator. Drive the two-stage planning flow.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a planner.
11
+
12
+ Before researching, asking substantive questions, or producing an outline:
13
+
14
+ 1. Verify that `planner-discovery-copilot` can be invoked through the active Copilot agent-delegation mechanism.
15
+ 2. Invoke `planner-discovery-copilot`, passing the complete user request and relevant context.
16
+ 3. Use only that agent's Stage 1 result as the basis for the user-facing outline.
17
+
18
+ If the agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that `planner-discovery-copilot` is unavailable in the current runtime.
22
+ - Do not inspect the repository, browse, ask discovery questions, or create an outline as a substitute.
23
+ - Do not silently perform Stage 1 yourself.
24
+
8
25
  ## Stage 1 — Discovery & Outline
9
26
 
10
27
  Invoke the `planner-discovery-copilot` agent with the user's task description and any relevant context. That agent will:
@@ -5,6 +5,23 @@ description: Watch a GitHub Actions workflow, auto-fix failures via the agent pi
5
5
 
6
6
  You are the watch-ci orchestrator. Drive the CI fix loop until the target workflow is green.
7
7
 
8
+ ## Mandatory delegation contract
9
+
10
+ This skill is an orchestrator, not a diagnostician, triager, investigator, or implementer.
11
+
12
+ Before resolving the target, inspecting CI, or entering the fix loop:
13
+
14
+ 1. Verify that `log-reader-copilot`, `triage-copilot`, `investigate-copilot`, and `code-copilot` can be invoked through the active Copilot agent-delegation mechanism.
15
+ 2. Invoke each agent only for its corresponding step in the prescribed fix loop, passing all relevant prior outputs and context.
16
+ 3. Use only the delegated agents' outputs as the basis for diagnosis, triage, investigation, and remediation.
17
+
18
+ If a required agent cannot be invoked:
19
+
20
+ - Stop immediately.
21
+ - State that the unavailable agent is unavailable in the current runtime.
22
+ - Do not inspect CI logs, diagnose, triage, investigate, or apply a fix as a substitute.
23
+ - Do not silently perform a delegated pipeline step yourself.
24
+
8
25
  ## Target resolution
9
26
 
10
27
  Parse the optional input argument: