trackops 2.0.3 → 2.0.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.
Files changed (103) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +695 -402
  3. package/bin/trackops.js +116 -116
  4. package/lib/config.js +326 -326
  5. package/lib/control.js +208 -208
  6. package/lib/env.js +244 -244
  7. package/lib/init.js +325 -325
  8. package/lib/locale.js +24 -0
  9. package/lib/opera-bootstrap.js +941 -874
  10. package/lib/opera.js +494 -477
  11. package/lib/preferences.js +74 -74
  12. package/lib/registry.js +214 -196
  13. package/lib/release.js +56 -56
  14. package/lib/runtime-state.js +144 -144
  15. package/lib/server.js +312 -207
  16. package/lib/skills.js +74 -57
  17. package/lib/workspace.js +260 -260
  18. package/locales/en.json +192 -166
  19. package/locales/es.json +192 -166
  20. package/package.json +61 -58
  21. package/scripts/postinstall-locale.js +21 -21
  22. package/scripts/skills-marketplace-smoke.js +124 -124
  23. package/scripts/smoke-tests.js +558 -554
  24. package/scripts/sync-skill-version.js +21 -21
  25. package/scripts/validate-skill.js +103 -103
  26. package/skills/trackops/SKILL.md +126 -122
  27. package/skills/trackops/agents/openai.yaml +7 -7
  28. package/skills/trackops/locales/en/SKILL.md +126 -122
  29. package/skills/trackops/locales/en/references/activation.md +94 -75
  30. package/skills/trackops/locales/en/references/troubleshooting.md +73 -55
  31. package/skills/trackops/locales/en/references/workflow.md +55 -32
  32. package/skills/trackops/references/activation.md +94 -75
  33. package/skills/trackops/references/troubleshooting.md +73 -55
  34. package/skills/trackops/references/workflow.md +55 -32
  35. package/skills/trackops/skill.json +29 -29
  36. package/templates/hooks/post-checkout +2 -2
  37. package/templates/hooks/post-commit +2 -2
  38. package/templates/hooks/post-merge +2 -2
  39. package/templates/opera/agent.md +28 -27
  40. package/templates/opera/architecture/dependency-graph.md +24 -24
  41. package/templates/opera/architecture/runtime-automation.md +24 -24
  42. package/templates/opera/architecture/runtime-operations.md +34 -34
  43. package/templates/opera/en/agent.md +22 -21
  44. package/templates/opera/en/architecture/dependency-graph.md +24 -24
  45. package/templates/opera/en/architecture/runtime-automation.md +24 -24
  46. package/templates/opera/en/architecture/runtime-operations.md +34 -34
  47. package/templates/opera/en/reviews/delivery-audit.md +18 -18
  48. package/templates/opera/en/reviews/integration-audit.md +18 -18
  49. package/templates/opera/en/router.md +24 -19
  50. package/templates/opera/references/autonomy-and-recovery.md +117 -117
  51. package/templates/opera/references/opera-cycle.md +193 -193
  52. package/templates/opera/registry.md +28 -28
  53. package/templates/opera/reviews/delivery-audit.md +18 -18
  54. package/templates/opera/reviews/integration-audit.md +18 -18
  55. package/templates/opera/router.md +54 -49
  56. package/templates/skills/changelog-updater/SKILL.md +69 -69
  57. package/templates/skills/commiter/SKILL.md +99 -99
  58. package/templates/skills/opera-contract-auditor/SKILL.md +38 -38
  59. package/templates/skills/opera-contract-auditor/locales/en/SKILL.md +38 -38
  60. package/templates/skills/opera-policy-guard/SKILL.md +26 -26
  61. package/templates/skills/opera-policy-guard/locales/en/SKILL.md +26 -26
  62. package/templates/skills/opera-skill/SKILL.md +279 -0
  63. package/templates/skills/opera-skill/locales/en/SKILL.md +279 -0
  64. package/templates/skills/opera-skill/locales/en/references/phase-dod.md +138 -0
  65. package/templates/skills/opera-skill/references/phase-dod.md +138 -0
  66. package/templates/skills/project-starter-skill/SKILL.md +150 -131
  67. package/templates/skills/project-starter-skill/locales/en/SKILL.md +143 -105
  68. package/templates/skills/project-starter-skill/references/opera-cycle.md +195 -193
  69. package/ui/css/base.css +284 -266
  70. package/ui/css/charts.css +425 -327
  71. package/ui/css/components.css +1107 -570
  72. package/ui/css/onboarding.css +133 -0
  73. package/ui/css/panels.css +345 -406
  74. package/ui/css/terminal.css +125 -0
  75. package/ui/css/timeline.css +58 -0
  76. package/ui/css/tokens.css +284 -227
  77. package/ui/favicon.svg +5 -5
  78. package/ui/index.html +99 -96
  79. package/ui/js/api.js +49 -13
  80. package/ui/js/app.js +28 -32
  81. package/ui/js/charts.js +526 -0
  82. package/ui/js/console-logger.js +172 -172
  83. package/ui/js/filters.js +247 -0
  84. package/ui/js/icons.js +129 -104
  85. package/ui/js/keyboard.js +229 -0
  86. package/ui/js/onboarding.js +33 -42
  87. package/ui/js/router.js +142 -125
  88. package/ui/js/theme.js +100 -100
  89. package/ui/js/time-tracker.js +248 -248
  90. package/ui/js/views/board.js +84 -114
  91. package/ui/js/views/dashboard.js +870 -0
  92. package/ui/js/views/flash.js +47 -47
  93. package/ui/js/views/projects.js +745 -0
  94. package/ui/js/views/scrum.js +476 -0
  95. package/ui/js/views/settings.js +153 -203
  96. package/ui/js/views/sidebar.js +37 -31
  97. package/ui/js/views/tasks.js +218 -101
  98. package/ui/js/views/timeline.js +265 -0
  99. package/ui/js/views/topbar.js +94 -107
  100. package/ui/app.js +0 -950
  101. package/ui/js/views/insights.js +0 -340
  102. package/ui/js/views/overview.js +0 -369
  103. package/ui/styles.css +0 -688
@@ -1,122 +1,126 @@
1
- ---
2
- name: "trackops"
3
- description: "Global TrackOps skill for explaining what TrackOps does, requiring explicit npm runtime installation, and guiding local project 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
- TrackOps is for working with agents on real projects without mixing the product itself with the operational layer.
11
-
12
- Use this skill when someone:
13
-
14
- - wants to start a project with AI agents
15
- - already has a repository and needs operational structure
16
- - needs to activate TrackOps and, if needed, OPERA
17
- - wants the same workflow in English or Spanish
18
-
19
- ## What this skill does
20
-
21
- This skill:
22
-
23
- - explains what TrackOps is and when to use it
24
- - requires an explicit and visible runtime installation
25
- - guides per-repository activation
26
- - helps route OPERA into either `direct bootstrap` or `agent handoff`
27
-
28
- ## What this skill does not do
29
-
30
- This skill does not:
31
-
32
- - install packages by itself
33
- - execute remote code silently
34
- - modify a repository before the runtime exists
35
- - replace the `trackops` runtime
36
-
37
- ## Quick flow
38
-
39
- Install the marketplace skill with:
40
-
41
- ```bash
42
- npx skills add Baxahaun/trackops
43
- ```
44
-
45
- Then confirm that the `trackops` runtime exists. If it is missing, ask the user to install it explicitly:
46
-
47
- ```bash
48
- npm install -g trackops
49
- trackops --version
50
- ```
51
-
52
- Rules:
53
-
54
- - the skill must not install packages or execute remote code by itself
55
- - the runtime is installed through a visible and auditable npm step
56
- - the skill may verify `trackops --version`, but it must not chain silent installs
57
- - the skill must not create repository files by itself
58
-
59
- ## Project activation
60
-
61
- Inside the repository:
62
-
63
- ```bash
64
- trackops init
65
- trackops opera install
66
- ```
67
-
68
- Core rules:
69
-
70
- - treat the global skill as an instruction layer
71
- - treat runtime installation as explicit and separate
72
- - use `ops/contract/operating-contract.json` as the machine contract when it exists
73
- - use `ops/project_control.json` as the operational source of truth
74
- - use `ops/policy/autonomy.json` before approval-sensitive actions
75
- - use `/.env` and `/.env.example` as the environment contract
76
- - keep generated operational docs under `ops/`
77
- - use `trackops locale get|set` and `trackops doctor locale` when language matters
78
-
79
- ## How OPERA enters the flow
80
-
81
- OPERA no longer assumes every user is technical.
82
-
83
- TrackOps classifies:
84
-
85
- - user technical level
86
- - current project state
87
- - available documentation
88
-
89
- Then it chooses one of two routes:
90
-
91
- - `direct bootstrap`
92
- for technical users and already-defined repositories
93
- - `agent handoff`
94
- for early ideas, non-technical users, or weak documentation
95
-
96
- If TrackOps routes bootstrap to the agent:
97
-
98
- - read `ops/bootstrap/agent-handoff.md`
99
- - or print it with `trackops opera handoff --print`
100
- - require these outputs:
101
- - `ops/bootstrap/intake.json`
102
- - `ops/bootstrap/spec-dossier.md`
103
- - `ops/bootstrap/open-questions.md` when important gaps remain
104
- - resume with:
105
-
106
- ```bash
107
- trackops opera bootstrap --resume
108
- ```
109
-
110
- ## What someone arriving from skills.sh should understand
111
-
112
- - the global skill installs instructions into the agent
113
- - the runtime is installed separately with npm
114
- - `trackops init` activates the project
115
- - `trackops opera install` adds the full operating framework only when needed
116
- - TrackOps separates product and operations so the repository stays manageable
117
-
118
- ## Which reference to read and when
119
-
120
- - read `locales/en/references/activation.md` only for installation, runtime verification, locale bootstrap, and repository activation
121
- - read `locales/en/references/workflow.md` only when TrackOps is already active and you need day-to-day repository operations
122
- - read `locales/en/references/troubleshooting.md` only when explicit installation, `trackops` detection, resume, or environment contract handling fails
1
+ ---
2
+ name: "trackops"
3
+ description: "Global TrackOps skill for explaining what TrackOps does, requiring explicit npm runtime installation, and guiding local project 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
+ TrackOps is a local control and coordination system for AI-agent software development.
11
+
12
+ This skill is the entry point to the system. Use it when someone:
13
+
14
+ - wants to start a project with AI agents
15
+ - already has a repository and needs operational structure
16
+ - needs to activate TrackOps and, if needed, OPERA
17
+ - wants the same workflow in English or Spanish
18
+
19
+ ## What this skill does
20
+
21
+ This skill:
22
+
23
+ - explains what TrackOps is and when to use it
24
+ - requires an explicit and visible runtime installation
25
+ - guides per-repository activation
26
+ - helps route OPERA into either `direct bootstrap` or `agent handoff`
27
+ - explains that installing OPERA activates a team of agents coordinated by `opera-skill`
28
+
29
+ ## What this skill does not do
30
+
31
+ This skill does not:
32
+
33
+ - install packages by itself
34
+ - execute remote code silently
35
+ - modify a repository before the runtime exists
36
+ - replace the `trackops` runtime
37
+
38
+ ## Quick flow
39
+
40
+ Install the marketplace skill with:
41
+
42
+ ```bash
43
+ npx skills add Baxahaun/trackops
44
+ ```
45
+
46
+ Then confirm that the `trackops` runtime exists. If it is missing, ask the user to install it explicitly:
47
+
48
+ ```bash
49
+ npm install -g trackops
50
+ trackops --version
51
+ ```
52
+
53
+ Rules:
54
+
55
+ - the skill must not install packages or execute remote code by itself
56
+ - the runtime is installed through a visible and auditable npm step
57
+ - the skill may verify `trackops --version`, but it must not chain silent installs
58
+ - the skill must not create repository files by itself
59
+
60
+ ## Project activation
61
+
62
+ Inside the repository:
63
+
64
+ ```bash
65
+ trackops init
66
+ trackops opera install
67
+ ```
68
+
69
+ Core rules:
70
+
71
+ - treat the global skill as an instruction layer
72
+ - treat runtime installation as explicit and separate
73
+ - use `ops/contract/operating-contract.json` as the machine contract when it exists
74
+ - use `ops/project_control.json` as the operational source of truth
75
+ - use `ops/policy/autonomy.json` before approval-sensitive actions
76
+ - use `/.env` and `/.env.example` as the environment contract
77
+ - keep generated operational docs under `ops/`
78
+ - use `trackops locale get|set` and `trackops doctor locale` when language matters
79
+
80
+ ## How OPERA enters the flow
81
+
82
+ OPERA no longer assumes every user is technical.
83
+
84
+ TrackOps classifies:
85
+
86
+ - user technical level
87
+ - current project state
88
+ - available documentation
89
+
90
+ Then it chooses one of two routes:
91
+
92
+ - `direct bootstrap`
93
+ for technical users and already-defined repositories
94
+ - `agent handoff`
95
+ for early ideas, non-technical users, or weak documentation
96
+
97
+ Once active, OPERA automatically installs a team of specialized agents under `ops/.agents/skills/`. The coordinator (`opera-skill`) decides which phase the project is in, which agent should act, when to delegate, and when to block progress.
98
+
99
+ If TrackOps routes bootstrap to the agent:
100
+
101
+ - read `ops/bootstrap/agent-handoff.md`
102
+ - or print it with `trackops opera handoff --print`
103
+ - require these outputs:
104
+ - `ops/bootstrap/intake.json`
105
+ - `ops/bootstrap/spec-dossier.md`
106
+ - `ops/bootstrap/open-questions.md` when important gaps remain
107
+ - resume with:
108
+
109
+ ```bash
110
+ trackops opera bootstrap --resume
111
+ ```
112
+
113
+ ## What someone arriving from skills.sh should understand
114
+
115
+ - the global skill installs instructions into the agent
116
+ - the runtime is installed separately with npm
117
+ - `trackops init` activates the project
118
+ - `trackops opera install` adds the full operating framework only when needed
119
+ - TrackOps separates product and operations so the repository stays manageable
120
+
121
+ ## Which reference to read and when
122
+
123
+ - read `locales/en/references/activation.md` only for installation, runtime verification, locale bootstrap, and repository activation
124
+ - read `locales/en/references/workflow.md` only when TrackOps is already active and you need day-to-day repository operations
125
+ - read `locales/en/references/troubleshooting.md` only when explicit installation, `trackops` detection, resume, or environment contract handling fails
126
+ - `opera-skill` is a project skill, not a reference of this global skill. It is installed with OPERA and coordinates work inside the repository.
@@ -1,75 +1,94 @@
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
- ```
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
+ `trackops opera install` also activates the project agent team:
31
+ - `opera-skill` (coordinator)
32
+ - `project-starter-skill`, `opera-contract-auditor`, `opera-policy-guard`
33
+
34
+ By default, `trackops init` creates a split workspace with:
35
+
36
+ - `app/`
37
+ - `ops/`
38
+ - `/.env`
39
+ - `/.env.example`
40
+ - `.trackops-workspace.json`
41
+
42
+ ## OPERA routing
43
+
44
+ OPERA always starts by classifying:
45
+
46
+ - technical level
47
+ - project state
48
+ - documentation state
49
+
50
+ If the project is still early or the user is non-technical, TrackOps writes:
51
+
52
+ - `ops/bootstrap/agent-handoff.md`
53
+ - `ops/bootstrap/agent-handoff.json`
54
+
55
+ The agent must produce:
56
+
57
+ - `ops/bootstrap/intake.json`
58
+ - `ops/bootstrap/spec-dossier.md`
59
+ - `ops/bootstrap/open-questions.md` when needed
60
+
61
+ When the quality gate passes, OPERA compiles:
62
+
63
+ - `ops/contract/operating-contract.json`
64
+ - `ops/genesis.md`
65
+ - `ops/policy/autonomy.json`
66
+
67
+ Resume with:
68
+
69
+ ```bash
70
+ trackops opera bootstrap --resume
71
+ ```
72
+
73
+ Locale controls:
74
+
75
+ ```bash
76
+ trackops locale get
77
+ trackops locale set en
78
+ trackops doctor locale
79
+ ```
80
+
81
+ ## Uninstall
82
+
83
+ Global:
84
+
85
+ ```bash
86
+ npx skills remove --global trackops -y
87
+ npm uninstall -g trackops
88
+ ```
89
+
90
+ Local:
91
+
92
+ - there is no `trackops uninstall` command yet
93
+ - review and remove `.trackops-workspace.json`, `ops/`, and `app/.env` if it was only the bridge
94
+ - do not delete `/.env` or `/.env.example` without checking whether the project still needs them
@@ -1,55 +1,73 @@
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.
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.
56
+
57
+ ## I want to remove TrackOps completely
58
+
59
+ - Remove the global skill:
60
+ `npx skills remove --global trackops -y`
61
+ - Remove the global runtime:
62
+ `npm uninstall -g trackops`
63
+ - Inside the repository, local removal is still manual:
64
+ - review `.trackops-workspace.json`
65
+ - review `ops/`
66
+ - review `app/.env` if it was only the bridge
67
+ - Do not delete `/.env` or `/.env.example` before checking whether the project still depends on them
68
+
69
+ ## `opera-skill` is missing from the project
70
+
71
+ - Confirm that OPERA is installed: `trackops opera status`
72
+ - If the skill is missing: `trackops skill install opera-skill`
73
+ - Verify: `trackops skill list` should show `opera-skill` first
@@ -1,32 +1,55 @@
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
+ # 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/.agents/skills/opera-skill/` coordinates the agent team
33
+ - `ops/.agents/skills/` contains the other project specialists
34
+ - `ops/.agent/hub/` holds the main agent configuration
35
+
36
+ ## Project agent team
37
+
38
+ When OPERA is installed, a team of specialized agents is activated:
39
+
40
+ - `opera-skill` — coordinator. Decides phase, state, delegation, and blocking.
41
+ - `project-starter-skill` — discovery and structuring
42
+ - `opera-contract-auditor` — operating contract audit
43
+ - `opera-policy-guard` — risk control
44
+
45
+ Additional skills available:
46
+
47
+ - `commiter` — commit formatting
48
+ - `changelog-updater` — changelog updates
49
+
50
+ Management commands:
51
+
52
+ trackops skill list
53
+ trackops skill catalog
54
+ trackops skill install <name>
55
+ trackops skill remove <name>