trackops 2.0.0 → 2.0.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.
@@ -1,89 +1,87 @@
1
1
  ---
2
2
  name: "trackops"
3
- description: "Global TrackOps skill that prepares your agent for local project orchestration and operational automation, ensures the runtime on first use, and guides per-project activation with optional OPERA."
4
- metadata:
5
- version: "2.0.0"
6
- type: "global"
7
- triggers:
8
- - "install trackops"
9
- - "skills.sh"
10
- - "trackops init"
11
- - "trackops opera install"
12
- - "opera handoff"
3
+ description: "Skill global de TrackOps para preparar al agente, exigir la instalacion explicita del runtime con npm y guiar la activacion local de TrackOps y OPERA dentro de cada repositorio."
13
4
  ---
14
5
 
15
6
  # TrackOps
16
7
 
17
- Use this skill in two layers.
8
+ Si la conversacion y el proyecto deben trabajar en ingles, lee `locales/en/SKILL.md` antes de seguir.
18
9
 
19
- ## 1. Global skill layer
10
+ ## Capa global
20
11
 
21
- Install it with:
12
+ Instala la skill del marketplace con:
22
13
 
23
14
  ```bash
24
15
  npx skills add Baxahaun/trackops
25
16
  ```
26
17
 
27
- Before relying on the CLI, run:
18
+ Despues, confirma que el runtime `trackops` existe. Si no esta disponible, pide al usuario que lo instale de forma explicita:
28
19
 
29
20
  ```bash
30
- node scripts/bootstrap-trackops.js
21
+ npm install -g trackops
22
+ trackops --version
31
23
  ```
32
24
 
33
- That bootstrap ensures the `trackops` runtime and records state in `~/.trackops/runtime.json`.
25
+ Reglas:
34
26
 
35
- ## 2. Local project layer
27
+ - la skill no debe instalar paquetes ni ejecutar codigo remoto por si sola
28
+ - el runtime se instala con un paso visible y auditable
29
+ - la skill puede verificar `trackops --version`, pero no debe encadenar instalaciones silenciosas
30
+ - la skill no debe crear archivos dentro de un repositorio por si sola
36
31
 
37
- Inside a repository:
32
+ ## Capa local del proyecto
33
+
34
+ Dentro del repositorio:
38
35
 
39
36
  ```bash
40
37
  trackops init
41
38
  trackops opera install
42
39
  ```
43
40
 
44
- Core rules:
41
+ Reglas base:
45
42
 
46
- - treat the global skill install as non-invasive
47
- - use `ops/contract/operating-contract.json` as the machine contract when it exists
48
- - use `ops/project_control.json` as the operational source of truth for backlog and state
49
- - use `ops/policy/autonomy.json` before approval-sensitive actions
50
- - use `/.env` and `/.env.example` as the environment contract
51
- - keep generated operational docs under `ops/`
52
- - support `trackops locale get|set` and `trackops doctor locale` when language matters
43
+ - trata la skill global como capa de instrucciones
44
+ - trata la instalacion del runtime como explicita y separada
45
+ - usa `ops/contract/operating-contract.json` como contrato de maquina cuando exista
46
+ - usa `ops/project_control.json` como fuente de verdad operativa
47
+ - usa `ops/policy/autonomy.json` antes de acciones sensibles
48
+ - usa `/.env` y `/.env.example` como contrato de entorno
49
+ - deja la documentacion operativa generada dentro de `ops/`
50
+ - usa `trackops locale get|set` y `trackops doctor locale` cuando el idioma importe
53
51
 
54
- ## OPERA onboarding
52
+ ## Onboarding de OPERA
55
53
 
56
- OPERA no longer assumes every user is technical.
54
+ OPERA ya no asume que todo usuario es tecnico.
57
55
 
58
- When OPERA starts, TrackOps classifies:
56
+ TrackOps clasifica:
59
57
 
60
- - user technical level
61
- - current project state
62
- - available documentation
58
+ - nivel tecnico del usuario
59
+ - estado actual del proyecto
60
+ - documentacion disponible
63
61
 
64
- Then it chooses one of two routes:
62
+ Luego elige una de dos rutas:
65
63
 
66
64
  - `direct bootstrap`
67
- for technical users and already-defined repositories
65
+ para usuarios tecnicos y repos ya definidos
68
66
  - `agent handoff`
69
- for early ideas, non-technical users, or weak documentation
67
+ para ideas tempranas, usuarios no tecnicos o documentacion debil
70
68
 
71
- If TrackOps routes bootstrap to the agent:
69
+ Si TrackOps deriva al agente:
72
70
 
73
- - read `ops/bootstrap/agent-handoff.md`
74
- - or print it with `trackops opera handoff --print`
75
- - the agent must produce:
71
+ - lee `ops/bootstrap/agent-handoff.md`
72
+ - o imprimelo con `trackops opera handoff --print`
73
+ - exige como salida:
76
74
  - `ops/bootstrap/intake.json`
77
75
  - `ops/bootstrap/spec-dossier.md`
78
- - `ops/bootstrap/open-questions.md` when important gaps remain
79
- - then resume with:
76
+ - `ops/bootstrap/open-questions.md` cuando queden huecos importantes
77
+ - reanuda con:
80
78
 
81
79
  ```bash
82
80
  trackops opera bootstrap --resume
83
81
  ```
84
82
 
85
- Read references only when needed:
83
+ ## Que referencia leer y cuando
86
84
 
87
- - `references/activation.md`
88
- - `references/workflow.md`
89
- - `references/troubleshooting.md`
85
+ - lee `references/activation.md` solo para instalacion, verificacion del runtime, locale bootstrap y activacion de un repo
86
+ - lee `references/workflow.md` solo cuando TrackOps ya esta activo y haga falta operar el dia a dia del repositorio
87
+ - lee `references/troubleshooting.md` solo cuando fallen la instalacion explicita, la deteccion de `trackops`, el resume o el contrato de entorno
@@ -1,3 +1,7 @@
1
1
  interface:
2
2
  display_name: "TrackOps"
3
- short_description: "Global TrackOps skill for local project orchestration, bilingual onboarding, agent coordination, and operational automation"
3
+ short_description: "Guide explicit TrackOps install and activate OPERA"
4
+ default_prompt: "Use $trackops to install the global skill, require explicit npm installation of the TrackOps runtime, and then activate TrackOps and OPERA in this repository."
5
+
6
+ policy:
7
+ allow_implicit_invocation: true
@@ -0,0 +1,87 @@
1
+ ---
2
+ name: "trackops"
3
+ description: "Global TrackOps skill for preparing the agent, requiring explicit npm runtime installation, and guiding local TrackOps and OPERA activation inside each repository."
4
+ ---
5
+
6
+ # TrackOps
7
+
8
+ Use this localized file when the conversation and project should run in English.
9
+
10
+ ## Global layer
11
+
12
+ Install the marketplace skill with:
13
+
14
+ ```bash
15
+ npx skills add Baxahaun/trackops
16
+ ```
17
+
18
+ Then confirm that the `trackops` runtime exists. If it is missing, ask the user to install it explicitly:
19
+
20
+ ```bash
21
+ npm install -g trackops
22
+ trackops --version
23
+ ```
24
+
25
+ Rules:
26
+
27
+ - the skill must not install packages or execute remote code by itself
28
+ - the runtime is installed through a visible and auditable npm step
29
+ - the skill may verify `trackops --version`, but it must not chain silent installs
30
+ - the skill must not create repository files by itself
31
+
32
+ ## Local project layer
33
+
34
+ Inside the repository:
35
+
36
+ ```bash
37
+ trackops init
38
+ trackops opera install
39
+ ```
40
+
41
+ Core rules:
42
+
43
+ - treat the global skill as an instruction layer
44
+ - treat runtime installation as explicit and separate
45
+ - use `ops/contract/operating-contract.json` as the machine contract when it exists
46
+ - use `ops/project_control.json` as the operational source of truth
47
+ - use `ops/policy/autonomy.json` before approval-sensitive actions
48
+ - use `/.env` and `/.env.example` as the environment contract
49
+ - keep generated operational docs under `ops/`
50
+ - use `trackops locale get|set` and `trackops doctor locale` when language matters
51
+
52
+ ## OPERA onboarding
53
+
54
+ OPERA no longer assumes every user is technical.
55
+
56
+ TrackOps classifies:
57
+
58
+ - user technical level
59
+ - current project state
60
+ - available documentation
61
+
62
+ Then it chooses one of two routes:
63
+
64
+ - `direct bootstrap`
65
+ for technical users and already-defined repositories
66
+ - `agent handoff`
67
+ for early ideas, non-technical users, or weak documentation
68
+
69
+ If TrackOps routes bootstrap to the agent:
70
+
71
+ - read `ops/bootstrap/agent-handoff.md`
72
+ - or print it with `trackops opera handoff --print`
73
+ - require these outputs:
74
+ - `ops/bootstrap/intake.json`
75
+ - `ops/bootstrap/spec-dossier.md`
76
+ - `ops/bootstrap/open-questions.md` when important gaps remain
77
+ - resume with:
78
+
79
+ ```bash
80
+ trackops opera bootstrap --resume
81
+ ```
82
+
83
+ ## Which reference to read and when
84
+
85
+ - read `locales/en/references/activation.md` only for installation, runtime verification, locale bootstrap, and repository activation
86
+ - read `locales/en/references/workflow.md` only when TrackOps is already active and you need day-to-day repository operations
87
+ - read `locales/en/references/troubleshooting.md` only when explicit installation, `trackops` detection, resume, or environment contract handling fails
@@ -0,0 +1,75 @@
1
+ # Activation
2
+
3
+ ## Global install
4
+
5
+ ```bash
6
+ npx skills add Baxahaun/trackops
7
+ npm install -g trackops
8
+ trackops --version
9
+ ```
10
+
11
+ The global skill installs instructions for the agent.
12
+
13
+ The `trackops` runtime is installed separately through npm so the step stays visible, auditable, and easy to verify.
14
+
15
+ Before continuing:
16
+
17
+ - confirm that `trackops --version` returns a valid version
18
+ - if it does not, fix PATH or reinstall `trackops`
19
+ - the skill must not try to install the runtime by itself
20
+
21
+ ## Local activation
22
+
23
+ Inside a repository:
24
+
25
+ ```bash
26
+ trackops init
27
+ trackops opera install
28
+ ```
29
+
30
+ By default, `trackops init` creates a split workspace with:
31
+
32
+ - `app/`
33
+ - `ops/`
34
+ - `/.env`
35
+ - `/.env.example`
36
+ - `.trackops-workspace.json`
37
+
38
+ ## OPERA routing
39
+
40
+ OPERA always starts by classifying:
41
+
42
+ - technical level
43
+ - project state
44
+ - documentation state
45
+
46
+ If the project is still early or the user is non-technical, TrackOps writes:
47
+
48
+ - `ops/bootstrap/agent-handoff.md`
49
+ - `ops/bootstrap/agent-handoff.json`
50
+
51
+ The agent must produce:
52
+
53
+ - `ops/bootstrap/intake.json`
54
+ - `ops/bootstrap/spec-dossier.md`
55
+ - `ops/bootstrap/open-questions.md` when needed
56
+
57
+ When the quality gate passes, OPERA compiles:
58
+
59
+ - `ops/contract/operating-contract.json`
60
+ - `ops/genesis.md`
61
+ - `ops/policy/autonomy.json`
62
+
63
+ Resume with:
64
+
65
+ ```bash
66
+ trackops opera bootstrap --resume
67
+ ```
68
+
69
+ Locale controls:
70
+
71
+ ```bash
72
+ trackops locale get
73
+ trackops locale set en
74
+ trackops doctor locale
75
+ ```
@@ -0,0 +1,55 @@
1
+ # Troubleshooting
2
+
3
+ ## Missing prerequisites
4
+
5
+ - Install Node 18+ if Node is missing or too old.
6
+ - Install a Node distribution that includes npm if npm is missing.
7
+
8
+ ## The skill is installed, but `trackops` does not start
9
+
10
+ - Confirm that the global skill exists:
11
+ `npx skills add Baxahaun/trackops`
12
+ - Install or reinstall the runtime explicitly:
13
+ `npm install -g trackops`
14
+ - Verify:
15
+ `trackops --version`
16
+ - If the binary still does not respond:
17
+ - check Node.js (`>= 18`)
18
+ - check that `npm` exists and works
19
+ - check PATH and reopen the terminal
20
+
21
+ ## Explicit runtime installation fails
22
+
23
+ - Re-run `npm install -g trackops`.
24
+ - If `npm` errors, fix that first; the skill cannot continue without the CLI.
25
+ - If the issue is global permissions, use the recommended method for your system or a user-controlled npm prefix.
26
+
27
+ ## OPERA routed bootstrap to the agent
28
+
29
+ This is expected when:
30
+
31
+ - the user is non-technical
32
+ - the project is still in idea stage
33
+ - documentation is weak
34
+
35
+ Use:
36
+
37
+ ```bash
38
+ trackops opera handoff --print
39
+ trackops opera bootstrap --resume
40
+ ```
41
+
42
+ ## Resume does not complete
43
+
44
+ TrackOps will not invent missing context.
45
+
46
+ Check that both files exist and contain usable data:
47
+
48
+ - `ops/bootstrap/intake.json`
49
+ - `ops/bootstrap/spec-dossier.md`
50
+
51
+ ## Environment looks inconsistent
52
+
53
+ - Run `trackops env status`.
54
+ - Run `trackops env sync`.
55
+ - If bridge mode is `copy`, do not edit `app/.env` directly.
@@ -0,0 +1,32 @@
1
+ # Workflow
2
+
3
+ Precondition:
4
+
5
+ - the global skill is already installed
6
+ - `trackops --version` responds correctly
7
+ - the repository was already activated with `trackops init`
8
+
9
+ Use TrackOps when the repository is already managed and you need day-to-day operations.
10
+
11
+ 1. Run `trackops status`.
12
+ 2. Run `trackops next`.
13
+ 3. Move task state with `trackops task ...`.
14
+ 4. Run `trackops sync` after meaningful changes.
15
+ 5. Run `trackops env status` when credentials matter.
16
+
17
+ Operational rules:
18
+
19
+ - in split workspaces, use `ops/project_control.json` as the source of truth
20
+ - generated operational docs live in `ops/`
21
+ - product code lives in `app/`
22
+ - real secrets live in `/.env`
23
+ - public environment contract lives in `/.env.example`
24
+ - `app/.env` is only a compatibility bridge
25
+
26
+ If OPERA is installed:
27
+
28
+ - `ops/contract/operating-contract.json` holds the machine contract
29
+ - `ops/genesis.md` holds the compiled human view
30
+ - `ops/policy/autonomy.json` holds the executable autonomy policy
31
+ - `ops/bootstrap/` holds onboarding artifacts
32
+ - `ops/.agent/hub/` and `ops/.agents/skills/` hold managed agent artifacts
@@ -1,31 +1,33 @@
1
- # Activation
1
+ # Activacion
2
2
 
3
- ## Global install
4
-
5
- Install the marketplace skill:
3
+ ## Instalacion global
6
4
 
7
5
  ```bash
8
6
  npx skills add Baxahaun/trackops
7
+ npm install -g trackops
8
+ trackops --version
9
9
  ```
10
10
 
11
- On first use, ensure the runtime with:
11
+ La skill global instala instrucciones para el agente.
12
12
 
13
- ```bash
14
- node scripts/bootstrap-trackops.js
15
- ```
13
+ El runtime `trackops` se instala aparte con npm para que el paso sea visible, auditable y facil de verificar.
14
+
15
+ Antes de seguir:
16
16
 
17
- The global skill must not create repository files by itself.
17
+ - confirma que `trackops --version` devuelve una version valida
18
+ - si no aparece, resuelve PATH o reinstala `trackops`
19
+ - la skill no debe intentar instalar el runtime por su cuenta
18
20
 
19
- ## Local activation
21
+ ## Activacion local
20
22
 
21
- Inside a repository:
23
+ Dentro del repo:
22
24
 
23
25
  ```bash
24
26
  trackops init
25
27
  trackops opera install
26
28
  ```
27
29
 
28
- By default, `trackops init` creates a split workspace with:
30
+ Por defecto, `trackops init` crea un workspace split con:
29
31
 
30
32
  - `app/`
31
33
  - `ops/`
@@ -33,41 +35,41 @@ By default, `trackops init` creates a split workspace with:
33
35
  - `/.env.example`
34
36
  - `.trackops-workspace.json`
35
37
 
36
- ## OPERA routing
38
+ ## Routing de OPERA
37
39
 
38
- OPERA always starts by classifying:
40
+ OPERA siempre empieza clasificando:
39
41
 
40
- - technical level
41
- - project state
42
- - documentation state
42
+ - nivel tecnico
43
+ - estado del proyecto
44
+ - estado de documentacion
43
45
 
44
- If the project is still early or the user is non-technical, TrackOps writes:
46
+ Si el proyecto esta en fase temprana o el usuario es no tecnico, TrackOps escribe:
45
47
 
46
48
  - `ops/bootstrap/agent-handoff.md`
47
49
  - `ops/bootstrap/agent-handoff.json`
48
50
 
49
- The agent then produces:
51
+ El agente debe producir:
50
52
 
51
53
  - `ops/bootstrap/intake.json`
52
54
  - `ops/bootstrap/spec-dossier.md`
53
- - `ops/bootstrap/open-questions.md` when needed
55
+ - `ops/bootstrap/open-questions.md` cuando haga falta
54
56
 
55
- When the quality gate passes, OPERA compiles:
57
+ Cuando pasa el quality gate, OPERA compila:
56
58
 
57
59
  - `ops/contract/operating-contract.json`
58
60
  - `ops/genesis.md`
59
61
  - `ops/policy/autonomy.json`
60
62
 
61
- Resume with:
63
+ Reanuda con:
62
64
 
63
65
  ```bash
64
66
  trackops opera bootstrap --resume
65
67
  ```
66
68
 
67
- Locale controls:
69
+ Controles de idioma:
68
70
 
69
71
  ```bash
70
72
  trackops locale get
71
- trackops locale set en
73
+ trackops locale set es
72
74
  trackops doctor locale
73
75
  ```
@@ -1,49 +1,55 @@
1
1
  # Troubleshooting
2
2
 
3
- ## Missing prerequisites
3
+ ## Faltan prerequisitos
4
4
 
5
- - Install Node 18+ if Node is missing or too old.
6
- - Install a Node distribution that includes npm if npm is missing.
5
+ - Instala Node 18+ si Node no existe o es demasiado antiguo.
6
+ - Instala una distribucion de Node que incluya npm si npm no existe.
7
7
 
8
- ## Global install command failed
8
+ ## La skill se instalo, pero `trackops` no arranca
9
9
 
10
- - Install from committed GitHub state:
10
+ - Confirma que la skill global existe:
11
11
  `npx skills add Baxahaun/trackops`
12
- - Then ensure the local runtime with:
13
- `node scripts/bootstrap-trackops.js`
14
- - If the install succeeded but the CLI still looks unavailable, confirm that `~/.trackops/runtime.json` exists.
12
+ - Instala o reinstala el runtime de forma explicita:
13
+ `npm install -g trackops`
14
+ - Verifica:
15
+ `trackops --version`
16
+ - Si el binario sigue sin responder:
17
+ - revisa Node.js (`>= 18`)
18
+ - revisa que `npm` exista y funcione
19
+ - revisa PATH y reabre la terminal
15
20
 
16
- ## Runtime bootstrap failed
21
+ ## La instalacion explicita del runtime falla
17
22
 
18
- - Re-run `node scripts/bootstrap-trackops.js`.
19
- - If npm global permissions fail, configure a user-writable npm prefix instead of using `sudo`.
23
+ - Reejecuta `npm install -g trackops`.
24
+ - Si `npm` devuelve error, resuelvelo primero; la skill no puede continuar sin el CLI.
25
+ - Si el problema es de permisos globales, usa el metodo recomendado para tu sistema o un prefijo npm controlado por el usuario.
20
26
 
21
- ## OPERA routed bootstrap to the agent
27
+ ## OPERA derivo el bootstrap al agente
22
28
 
23
- This is expected when:
29
+ Esto es esperado cuando:
24
30
 
25
- - the user is non-technical
26
- - the project is still in idea stage
27
- - documentation is weak
31
+ - el usuario no es tecnico
32
+ - el proyecto esta en fase idea
33
+ - la documentacion es debil
28
34
 
29
- Use:
35
+ Usa:
30
36
 
31
37
  ```bash
32
38
  trackops opera handoff --print
33
39
  trackops opera bootstrap --resume
34
40
  ```
35
41
 
36
- ## Resume does not complete
42
+ ## `trackops opera bootstrap --resume` no avanza
37
43
 
38
- TrackOps will not invent missing context.
44
+ TrackOps no inventa contexto faltante.
39
45
 
40
- Check that both files exist and contain usable data:
46
+ Comprueba que existan ambos archivos y contengan datos utiles:
41
47
 
42
48
  - `ops/bootstrap/intake.json`
43
49
  - `ops/bootstrap/spec-dossier.md`
44
50
 
45
- ## Environment looks inconsistent
51
+ ## El entorno parece inconsistente
46
52
 
47
- - Run `trackops env status`.
48
- - Run `trackops env sync`.
49
- - If bridge mode is `copy`, do not edit `app/.env` directly.
53
+ - Ejecuta `trackops env status`.
54
+ - Ejecuta `trackops env sync`.
55
+ - Si el modo bridge es `copy`, no edites `app/.env` directamente.
@@ -1,26 +1,32 @@
1
- # Workflow
1
+ # Flujo diario
2
2
 
3
- Once TrackOps is active in a repository:
3
+ Precondicion:
4
4
 
5
- 1. Run `trackops status`.
6
- 2. Run `trackops next`.
7
- 3. Move task state with `trackops task ...`.
8
- 4. Run `trackops sync` after meaningful changes.
9
- 5. Run `trackops env status` when credentials matter.
5
+ - la skill global ya esta instalada
6
+ - `trackops --version` responde correctamente
7
+ - el repo ya fue activado con `trackops init`
10
8
 
11
- Operational rules:
9
+ Usa TrackOps cuando el repositorio ya esta gestionado y necesites operar el dia a dia.
12
10
 
13
- - In split workspaces, use `ops/project_control.json` as the source of truth.
14
- - Generated operational docs live in `ops/`.
15
- - Product code lives in `app/`.
16
- - Real secrets live in `/.env`.
17
- - Public environment contract lives in `/.env.example`.
18
- - `app/.env` is only a compatibility bridge.
11
+ 1. Ejecuta `trackops status`.
12
+ 2. Ejecuta `trackops next`.
13
+ 3. Mueve el estado de tareas con `trackops task ...`.
14
+ 4. Ejecuta `trackops sync` despues de cambios relevantes.
15
+ 5. Ejecuta `trackops env status` cuando las credenciales importen.
19
16
 
20
- If OPERA is installed:
17
+ Reglas operativas:
21
18
 
22
- - `ops/contract/operating-contract.json` holds the machine contract.
23
- - `ops/genesis.md` holds the compiled human view.
24
- - `ops/policy/autonomy.json` holds the executable autonomy policy.
25
- - `ops/bootstrap/` holds onboarding artifacts.
26
- - `ops/.agent/hub/` and `ops/.agents/skills/` hold managed agent artifacts.
19
+ - en workspaces split, usa `ops/project_control.json` como fuente de verdad
20
+ - la documentacion operativa generada vive en `ops/`
21
+ - el codigo de producto vive en `app/`
22
+ - los secretos reales viven en `/.env`
23
+ - el contrato publico de entorno vive en `/.env.example`
24
+ - `app/.env` solo es un puente de compatibilidad
25
+
26
+ Si OPERA esta instalado:
27
+
28
+ - `ops/contract/operating-contract.json` guarda el contrato de maquina
29
+ - `ops/genesis.md` guarda la vista humana compilada
30
+ - `ops/policy/autonomy.json` guarda la politica ejecutable
31
+ - `ops/bootstrap/` guarda artefactos de onboarding
32
+ - `ops/.agent/hub/` y `ops/.agents/skills/` guardan artefactos gestionados de agente
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "trackops",
3
- "shortDescription": "Global TrackOps skill for local project orchestration, agent coordination, bilingual onboarding, and operational automation.",
4
- "description": "Installs TrackOps as a global skill, ensures the runtime on first use, lets users choose Spanish or English, activates local project orchestration, and routes OPERA onboarding into either direct bootstrap or agent-led discovery.",
5
- "skillVersion": "2.0.0",
6
- "trackopsVersion": "2.0.0",
3
+ "shortDescription": "Global TrackOps skill for secure agent guidance, explicit runtime install, bilingual onboarding, and local project orchestration.",
4
+ "description": "Installs TrackOps as a global skill, requires explicit runtime installation with npm, lets users choose Spanish or English, activates local project orchestration, and routes OPERA onboarding into either direct bootstrap or agent-led discovery.",
5
+ "skillVersion": "2.0.2",
6
+ "trackopsVersion": "2.0.2",
7
7
  "npmPackage": "trackops",
8
- "bootstrapPolicy": "first_use",
8
+ "bootstrapPolicy": "explicit_install",
9
9
  "supportedAgentsV1": [
10
10
  "antigravity",
11
11
  "claude-code",
@@ -2,7 +2,7 @@
2
2
 
3
3
  ```mermaid
4
4
  flowchart TD
5
- A[Global runtime bootstrap] --> B[trackops init]
5
+ A[Explicit global runtime install] --> B[trackops init]
6
6
  B --> C[trackops opera install]
7
7
  C --> D{Routing}
8
8
  D -->|direct_cli| E[Direct intake]