@aopslabs/aops 0.3.30 → 0.3.32

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 (147) hide show
  1. package/README.md +11 -3
  2. package/aops-assets-release/aops-assets.json.gz +0 -0
  3. package/aops-assets-release/disciplines/build-review-chat/SKILL.md +33 -0
  4. package/aops-assets-release/disciplines/coordinator-loop/SKILL.md +33 -0
  5. package/aops-assets-release/disciplines/design-first-consensus/SKILL.md +30 -0
  6. package/aops-assets-release/disciplines/solo-pm-loop/SKILL.md +31 -0
  7. package/aops-assets-release/docs/user-guides/agentspace-user-guide.md +384 -0
  8. package/aops-assets-release/docs/user-guides/aops-cli-user-guide.md +2067 -0
  9. package/aops-assets-release/docs/user-guides/chatv3-user-guide.md +500 -0
  10. package/aops-assets-release/docs/user-guides/docman-user-guide.md +1009 -0
  11. package/aops-assets-release/docs/user-guides/projectman-user-guide.md +763 -0
  12. package/aops-assets-release/docs/user-guides/tasker-user-guide.md +244 -0
  13. package/aops-assets-release/release.json +6 -0
  14. package/aops-assets-release/roles/coordinator/ROLE.md +28 -0
  15. package/aops-assets-release/roles/implementer/ROLE.md +27 -0
  16. package/aops-assets-release/roles/reviewer/ROLE.md +27 -0
  17. package/aops-assets-release/skills/aops/SKILL.md +112 -0
  18. package/aops-assets-release/skills/aops-bootstrapper-authoring/SKILL.md +245 -0
  19. package/aops-assets-release/skills/aops-cli-agentspace/SKILL.md +186 -0
  20. package/aops-assets-release/skills/aops-cli-board-lifecycle/SKILL.md +64 -0
  21. package/aops-assets-release/skills/aops-cli-chat/SKILL.md +204 -0
  22. package/aops-assets-release/skills/aops-cli-collab/SKILL.md +42 -0
  23. package/aops-assets-release/skills/aops-cli-core/SKILL.md +219 -0
  24. package/aops-assets-release/skills/aops-cli-discuss/SKILL.md +172 -0
  25. package/aops-assets-release/skills/aops-cli-docman/SKILL.md +192 -0
  26. package/aops-assets-release/skills/aops-cli-fileman/SKILL.md +169 -0
  27. package/aops-assets-release/skills/aops-cli-mission/SKILL.md +128 -0
  28. package/aops-assets-release/skills/aops-cli-operator-brief/SKILL.md +67 -0
  29. package/aops-assets-release/skills/aops-cli-projectman/SKILL.md +235 -0
  30. package/aops-assets-release/skills/aops-cli-sugar-authoring/SKILL.md +188 -0
  31. package/aops-assets-release/skills/aops-cli-tasker/SKILL.md +108 -0
  32. package/aops-assets-release/skills/aops-cli-tooling-agent/SKILL.md +112 -0
  33. package/aops-assets-release/skills/aops-cli-view/SKILL.md +210 -0
  34. package/aops-assets-release/skills/aops-collaborative-work/SKILL.md +304 -0
  35. package/aops-assets-release/skills/aops-interactive/SKILL.md +70 -0
  36. package/aops-assets-release/skills/aops-loop-interactive/SKILL.md +314 -0
  37. package/aops-assets-release/skills/aops-working-disciplines/SKILL.md +310 -0
  38. package/aops-assets-release/skills/feature-retirement-flow/SKILL.md +126 -0
  39. package/assets/skills/aops-install/SKILL.md +18 -17
  40. package/dist/commands/assets.js +93 -1264
  41. package/dist/commands/community-server.js +27 -8
  42. package/dist/commands/community-setup.js +1 -2
  43. package/dist/commands/discuss.js +1 -1
  44. package/dist/commands/doc.js +88 -27
  45. package/dist/commands/docs.js +68 -0
  46. package/dist/commands/global-update.js +28 -0
  47. package/dist/commands/init.js +3 -1
  48. package/dist/commands/loop.js +6379 -0
  49. package/dist/commands/memory.js +2 -1
  50. package/dist/commands/pm/index.js +11 -9
  51. package/dist/commands/pm/projectman.js +33 -2
  52. package/dist/commands/project.js +6 -6
  53. package/dist/commands/prompt.js +1 -1
  54. package/dist/commands/repo-sync.js +92 -27
  55. package/dist/commands/runner.js +257 -0
  56. package/dist/commands/skill.js +1 -1
  57. package/dist/commands/start.js +1 -1
  58. package/dist/commands/tasker.js +361 -0
  59. package/dist/commands/view.js +53 -9
  60. package/dist/lib/commercial-setup-readiness-adapter.js +0 -1
  61. package/dist/lib/community-migration-snapshot.js +7 -9
  62. package/dist/lib/community-native-database-recovery.js +5 -14
  63. package/dist/lib/community-native-lifecycle.js +13 -0
  64. package/dist/lib/setup-agent-assets-bridge.js +28 -148
  65. package/dist/lib/setup-agent-assets-release.js +16 -44
  66. package/dist/lib/setup-init-orchestrator.js +11 -15
  67. package/dist/lib/simple-agent-assets.js +447 -0
  68. package/dist/lib/user-guide-sections.js +488 -0
  69. package/dist/main.js +10 -2
  70. package/dist/seeds/agents-md.js +3 -3
  71. package/dist/utils/agents-md.js +1 -1
  72. package/dist/utils/guide-paths.js +7 -7
  73. package/dist/utils/hosted-workspace.js +2 -1
  74. package/dist/utils/repo-first-storage.js +26 -1
  75. package/dist/utils/session-state.js +2 -7
  76. package/launchers/aops-cockpit.sh +0 -0
  77. package/launchers/aops-server.sh +0 -0
  78. package/package.json +67 -35
  79. package/THIRD_PARTY_NOTICES +0 -16169
  80. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/SKILL.md +0 -47
  81. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/agentspace/SKILL.md +0 -72
  82. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/aops-cli-core/SKILL.md +0 -110
  83. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/chatv3/SKILL.md +0 -59
  84. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/collaborative-work/SKILL.md +0 -81
  85. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/discuss/SKILL.md +0 -66
  86. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/docman/SKILL.md +0 -75
  87. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/projectman/SKILL.md +0 -92
  88. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/sys/SKILL.md +0 -36
  89. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/view/SKILL.md +0 -58
  90. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/references/working-disciplines/SKILL.md +0 -66
  91. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/agent-assets.md +0 -81
  92. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/agentspace.md +0 -183
  93. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/aops-cli.md +0 -1108
  94. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/aops-system.md +0 -102
  95. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/chatv3.md +0 -113
  96. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/docman.md +0 -223
  97. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/projectman.md +0 -233
  98. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/sys.md +0 -94
  99. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/files/user-guides/working-disciplines.md +0 -482
  100. package/agent-assets-release/agent-assets/core/bc42dd7792dbe66040e99a7ef3d80b3bc788c72b369b5a065cf936aef29f53fb/manifest.json +0 -117
  101. package/agent-assets-release/agent-assets/gateway/aops/SKILL.md +0 -14
  102. package/agent-assets-release/agent-assets/inventory.json +0 -29
  103. package/agent-assets-release/agent-assets/projection.json +0 -8
  104. package/agent-assets-release/agent-assets-release.json +0 -171
  105. package/agent-assets-release/agent-assets-release.sigstore.json +0 -67
  106. package/assets/agent-assets/core/SKILL.md +0 -47
  107. package/assets/agent-assets/core/references/agentspace/SKILL.md +0 -72
  108. package/assets/agent-assets/core/references/aops-cli-core/SKILL.md +0 -110
  109. package/assets/agent-assets/core/references/chatv3/SKILL.md +0 -59
  110. package/assets/agent-assets/core/references/collaborative-work/SKILL.md +0 -81
  111. package/assets/agent-assets/core/references/discuss/SKILL.md +0 -66
  112. package/assets/agent-assets/core/references/docman/SKILL.md +0 -75
  113. package/assets/agent-assets/core/references/projectman/SKILL.md +0 -92
  114. package/assets/agent-assets/core/references/sys/SKILL.md +0 -36
  115. package/assets/agent-assets/core/references/view/SKILL.md +0 -58
  116. package/assets/agent-assets/core/references/working-disciplines/SKILL.md +0 -66
  117. package/assets/agent-assets/core/user-guides/agent-assets.md +0 -81
  118. package/assets/agent-assets/core/user-guides/agentspace.md +0 -183
  119. package/assets/agent-assets/core/user-guides/aops-cli.md +0 -1108
  120. package/assets/agent-assets/core/user-guides/aops-system.md +0 -102
  121. package/assets/agent-assets/core/user-guides/chatv3.md +0 -113
  122. package/assets/agent-assets/core/user-guides/docman.md +0 -223
  123. package/assets/agent-assets/core/user-guides/projectman.md +0 -233
  124. package/assets/agent-assets/core/user-guides/sys.md +0 -94
  125. package/assets/agent-assets/core/user-guides/working-disciplines.md +0 -482
  126. package/assets/agent-assets/gateway/aops/SKILL.md +0 -14
  127. package/dist/lib/agent-assets/gateway.js +0 -15
  128. package/dist/lib/agent-assets/guards.js +0 -23
  129. package/dist/lib/agent-assets/hosted-discovery.js +0 -148
  130. package/dist/lib/agent-assets/hosted-package-input.js +0 -154
  131. package/dist/lib/agent-assets/legacy-pointer-migration.js +0 -677
  132. package/dist/lib/agent-assets/native-fs.js +0 -589
  133. package/dist/lib/agent-assets/roots.js +0 -45
  134. package/dist/lib/agent-assets/runtime-binding-reader.js +0 -545
  135. package/dist/lib/agent-assets/runtime-targets.js +0 -50
  136. package/dist/lib/agent-assets/store-reader.js +0 -1212
  137. package/dist/lib/agent-assets/store-writer.js +0 -1484
  138. package/native/bin/darwin-arm64/aops-agent-assets-fs +0 -0
  139. package/native/bin/darwin-x64/aops-agent-assets-fs +0 -0
  140. package/native/bin/linux-arm64/aops-agent-assets-fs +0 -0
  141. package/native/bin/linux-x64/aops-agent-assets-fs +0 -0
  142. package/native/bin/win32-x64/aops-agent-assets-fs.exe +0 -0
  143. package/native/manifest.json +0 -49
  144. package/native/qualifications/win32-x64.json +0 -23
  145. package/native/tui/darwin-arm64/aops-tui +0 -0
  146. package/native/tui/linux-x64/aops-tui +0 -0
  147. package/native/tui/win32-x64/aops-tui.exe +0 -0
@@ -1,59 +0,0 @@
1
- ---
2
- name: aops-cli-chat
3
- description: Use for ChatV3 encrypted channels, invitations, agent-owned local sessions, membership, presence, bindings, messages, cursors, and foreground listening through aops chat.
4
- ---
5
-
6
- # AOPS Chat (ChatV3)
7
-
8
- `aops chat` is the canonical encrypted ChatV3 channel/room surface for agent
9
- coordination and product-room work. `aops chatv3` is a compatibility alias for
10
- the same command tree; it is not a second messaging system.
11
-
12
- Read only the relevant section of `../../user-guides/chatv3.md`. Exact flags
13
- come from nested help; direct payloads come from live schema.
14
-
15
- ## Common entry points
16
-
17
- ```bash
18
- aops chat --help
19
- aops chat channel --help
20
- aops chat session --help
21
- aops chat member --help
22
- aops chat send --help
23
- aops chat read --help
24
- aops chat listen --help
25
- ```
26
-
27
- Typical foreground coordination:
28
-
29
- ```bash
30
- aops chat session list --json
31
- aops chat listen --session <id> --room general --after-seq <n> --timeout-sec 60 --json
32
- aops chat send --session <id> --room general "<message>" --json
33
- aops chat read --session <id> --room general --after-seq <n> --mark-delivered --mark-read --json
34
- ```
35
-
36
- Keep foreground listening active while work remains. A listen timeout means
37
- only “no message in this bounded interval”; it does not end the task.
38
-
39
- Local sessions are isolated by detected agent owner (for example a Codex
40
- thread), or by `AOPS_CHATV3_SESSION_OWNER` / `--session-owner`. Session ids,
41
- member tokens, and room keys must never be copied between agent owners or
42
- pasted into chat, logs, source, or shell history. Legacy shared stores are
43
- claimed once and migrated into the first local owner that uses that session.
44
-
45
- `send --mark-read` and `send --mark-delivered` advance cursors only when the
46
- pre-send cursor is exactly caught up. If another message arrived first, the
47
- send succeeds but the cursor advance is skipped; read the gap explicitly.
48
-
49
- For a write not exposed by sugar, inspect the exact live schema first:
50
-
51
- ```bash
52
- aops agent tools --domain chatv3 --summary --json
53
- aops agent schema --tool chatv3.<operation> --summary --json
54
- aops agent invoke --tool chatv3.<operation> --input '@payload.json' --preview --json
55
- ```
56
-
57
- ChatV3 is coordination/wake truth, not the durable Projectman review record or
58
- the structured `discuss` transcript. Bind or summarize outcomes into the
59
- correct owner when durability matters.
@@ -1,81 +0,0 @@
1
- ---
2
- name: aops-collaborative-work
3
- description: Use when the operator explicitly wants the full AOPS session playbook for solo work, async review, or ChatV3 room collaboration with Projectman-backed execution.
4
- ---
5
-
6
- # AOPS collaborative work
7
-
8
- Default to `solo`. Collaboration is an operator choice, not an automatic
9
- requirement. Select one mode at kickoff and use
10
- `../working-disciplines/SKILL.md` only when a working method must also be chosen.
11
-
12
- ## Compact startup
13
-
14
- ```bash
15
- aops sync status --json
16
- aops view dashboard --style agent
17
- aops start --task "<task>" --json --out ./aops-start.md
18
- aops pm board resume --board <slug> --json
19
- ```
20
-
21
- Use `result.promptRef.path` or the output file; do not request inline/full output
22
- unless the prompt body is actually needed. Ask the operator only for fields
23
- explicitly marked operator-owned, especially agent identities and roles.
24
-
25
- ## Mode 1: solo
26
-
27
- 1. Read the smallest relevant guide/help surface.
28
- 2. Create or identify the Projectman task/plan appropriate to the work size.
29
- 3. Implement one bounded slice.
30
- 4. Run focused validation and read back hosted mutations.
31
- 5. Update status/handoff; keep the board open unless closeout was requested.
32
-
33
- Useful reads:
34
-
35
- ```bash
36
- aops view digest --task <task-id> --depth shallow
37
- aops pm issue list --status open --json
38
- aops pm review-request list --status open --json
39
- ```
40
-
41
- ## Mode 2: solo plus async review
42
-
43
- After implementation and local validation, create a durable review request:
44
-
45
- ```bash
46
- aops pm review-request create --help
47
- aops pm review-request list --status open --json
48
- aops pm review-request result --help
49
- ```
50
-
51
- The reviewer records the result in Projectman. Material findings become
52
- Projectman issues or bounded fix slices; chat is only the optional wake channel.
53
- Do not claim review completion from a message alone.
54
-
55
- ## Mode 3: ChatV3 room
56
-
57
- ```bash
58
- aops chat join "<invite>" --handle <agent> --save-session --json
59
- aops chat binding add --session <id> --room general \
60
- --binding-type projectman.kanban-task --ref-id <task-id> --json
61
- aops chat room brief --session <id> --room general --for <peer> --json
62
- aops chat listen --session <id> --room general \
63
- --after-seq <last-seq> --timeout-sec 60 --json
64
- ```
65
-
66
- Each participant owns a non-overlapping slice and reports completion with
67
- validation evidence. Use `aops discuss` only for a material consensus decision.
68
- `aops chatv3` remains an alias for this same ChatV3 surface.
69
-
70
- ## During work
71
-
72
- ```bash
73
- aops start --reminder --task "<task>" --area <area> --json
74
- aops mem checkpoint --help
75
- aops pm status audit --help
76
- ```
77
-
78
- Prefer the detail ladder: this skill → one family reference → nested `--help` →
79
- live `agent schema`. Never preload every guide. Never invent another agent's
80
- stance, close operator-owned surfaces, or mark work done without requested
81
- validation and durable status.
@@ -1,66 +0,0 @@
1
- ---
2
- name: aops-cli-discuss
3
- description: Use for a structured server-canonical design decision or consensus topic with independent turns, explicit final stances, completeness checks, and deterministic conclusion.
4
- ---
5
-
6
- # AOPS Discuss
7
-
8
- `aops discuss` owns a durable decision transcript and conclusion. Use hosted
9
- `aops chat` (ChatV3) to wake/coordinate peers and Projectman to track review/execution.
10
- Do not start a discussion ritual for a small reversible implementation choice.
11
-
12
- The complete owner and troubleshooting model is in the Discuss sections of
13
- `../../user-guides/agentspace.md`.
14
-
15
- ## Start and inspect
16
-
17
- ```bash
18
- aops discuss --help
19
- aops discuss start --title "<decision>" --question "<question>" \
20
- --participant <agent-a> --participant <agent-b> --apply --json
21
- aops discuss status --topic <topic> --json
22
- aops discuss get --topic <topic> --json
23
- ```
24
-
25
- Give every participant enough neutral context to research independently. Role
26
- assignment belongs to the operator; an agent must not invent or swap identities.
27
-
28
- ## Record turns
29
-
30
- ```bash
31
- aops discuss turn --topic <topic> --agent <agent> \
32
- --kind statement --from-file ./turn.md --apply --json
33
- aops discuss wait --topic <topic> --agent <agent> \
34
- --timeout-sec 540 --interval-sec 5 --json
35
- ```
36
-
37
- For material design decisions, record multiple substantive non-final turns so
38
- tradeoffs and objections are visible. Do not use chat messages as a substitute
39
- for the canonical topic transcript.
40
-
41
- ## Finalize safely
42
-
43
- ```bash
44
- aops discuss turn --topic <topic> --agent <agent> \
45
- --kind final-stance --from-file ./final.md --apply --json
46
- aops discuss status --topic <topic> --json
47
- aops discuss conclude --topic <topic> --apply --json
48
- ```
49
-
50
- Conclude only when every required participant has a `final-stance` and status
51
- reports no missing final stances. Outputs must contain real decisions and
52
- follow-ups, not `_TBD_` placeholders.
53
-
54
- There is no automatic bridge: explicitly reference the concluded topic from a
55
- Projectman task/review/issue or durable memory, then send a short ChatV3
56
- wake if another agent must act.
57
-
58
- For raw operations:
59
-
60
- ```bash
61
- aops agent tools --domain agentspace --q discuss --limit 20 --summary --json
62
- aops agent schema --tool agentspace.<discuss-operation> --summary --json
63
- ```
64
-
65
- Prefer slug/ID selectors returned by creation. Treat timeouts as state to
66
- report, not permission to fabricate another participant's stance.
@@ -1,75 +0,0 @@
1
- ---
2
- name: aops-cli-docman
3
- description: Use for Docman document groups, documents, versions, sections/pages, search, answer, publish, mirrors, markdown import, and schema-first payloads through AOPS.
4
- ---
5
-
6
- # Docman
7
-
8
- Docman owns the versioned document graph and retrieval/publishing surfaces.
9
- Read the matching section of `../../user-guides/docman.md` for the complete
10
- model; use nested help for current flags.
11
-
12
- ## Discover and read
13
-
14
- ```bash
15
- aops doc --help
16
- aops doc group list --project-slug <slug> --json
17
- aops doc list --project-slug <slug> --json
18
- aops doc outline get --document-version-id <id> --titles-only --depth 0 --json
19
- aops doc search --document-version-id <id> --q "<query>" --json
20
- aops doc answer --help
21
- ```
22
-
23
- Prefer IDs from list/get output. Search is retrieval, not necessarily the full
24
- page body. Use outline for structure and the supported page/version read
25
- surface for exact content.
26
-
27
- ## Author and version
28
-
29
- ```bash
30
- aops doc group create --help
31
- aops doc create --help
32
- aops doc version create --help
33
- aops doc section create --help
34
- aops doc page create --help
35
- aops doc page draft-save --help
36
- ```
37
-
38
- Create graph nodes through CRUD commands when IDs are known. Use markdown
39
- import for intentional bulk import, not for a one-page edit. Every mutation is
40
- preview/apply guarded where supported; read back the current version after
41
- publishing.
42
-
43
- Compose or materialize the exact candidate before review and retain its
44
- version ids plus `contentHash`. Put the complete immutable evidence reference
45
- in both the Projectman review request and an approved review result. Saving a
46
- mutable draft changes its hash and requires a linked re-review; a page-version
47
- id alone is not approval evidence.
48
-
49
- ## Search, answer, publish, and mirrors
50
-
51
- ```bash
52
- aops doc scope search --project-slug <slug> --q "<query>" --json
53
- aops doc publish --help
54
- aops doc mirror pull --project-slug <slug> --group-uid <group> --out-dir <dir> --apply --json
55
- ```
56
-
57
- Mirrors are read-only projections. Change the hosted document, publish/set the
58
- current version as required, then refresh the mirror. `aops sync pull` does not
59
- replace Docman mirror pull.
60
-
61
- ## Raw fallback
62
-
63
- ```bash
64
- aops agent tools --domain docman --q document --limit 20 --summary --json
65
- aops agent schema --tool docman.<operation> --summary --json
66
- aops agent invoke --tool docman.<operation> --input '@payload.json' --preview --json
67
- ```
68
-
69
- If sugar reports a validation error, stop varying flags blindly. Compare the
70
- live operation schema/OpenAPI with the wrapper payload, then use raw invoke only
71
- with an exact reviewed payload.
72
-
73
- Docman owns document semantics; external storage owns binary file bytes and
74
- recovery, Projectman owns execution status, and Agentspace owns durable agent
75
- memory/reusable assets.
@@ -1,92 +0,0 @@
1
- ---
2
- name: aops-cli-projectman
3
- description: Use for Projectman boards, tasks, sprints and implementation plans, microtasks, issues, feedback, reviews, handoffs, and server-canonical planning through AOPS.
4
- ---
5
-
6
- # Projectman
7
-
8
- Projectman is the execution and review source of truth. It supports board-only,
9
- sprint-only, combined, and small-task flows; do not force a ceremony the
10
- operator did not choose. Read the relevant heading in
11
- `../../user-guides/projectman.md` for deeper examples.
12
-
13
- ## Inspect the live surface
14
-
15
- ```bash
16
- aops pm --help
17
- aops pm board --help
18
- aops pm ktask --help
19
- aops pm sprint --help
20
- aops pm utask --help
21
- aops pm issue --help
22
- aops pm feedback --help
23
- aops pm review-request --help
24
- aops pm handoff --help
25
- ```
26
-
27
- ## Common planning flow
28
-
29
- ```bash
30
- aops pm board list --json
31
- aops pm board create --name "Delivery" --apply --json
32
- aops pm ktask create --board <board> --column Todo --title "<task>" --apply --json
33
- aops pm sprint create --task <task-id> --name "Sprint 1" --goal "<outcome>" --apply --json
34
- aops pm utask create --sprint <sprint-id> --title "<verifiable step>" --apply --json
35
- ```
36
-
37
- Use clear outcome text: what is needed, why it matters, and how completion will
38
- be proven. IDs returned by writes should be reused; do not resolve ambiguous
39
- titles repeatedly.
40
-
41
- ## Read and resume
42
-
43
- ```bash
44
- aops pm board get --slug <board-slug> --json
45
- aops pm ktask get --id <task-id> --json
46
- aops pm sprint get --id <sprint-id> --json
47
- aops view digest --task <task-id> --depth deep
48
- aops pm handoff resume --subject ktask --id <task-id> --json
49
- ```
50
-
51
- Local `view` output is a read-only presentation cache. Writes always go through
52
- hosted Projectman commands.
53
-
54
- ## Issues, feedback, and review
55
-
56
- ```bash
57
- aops pm issue create --help
58
- aops pm feedback create --help
59
- aops pm review-request create --help
60
- aops pm review-request result --help
61
- aops pm handoff write --help
62
- ```
63
-
64
- Use an issue for a material blocker/defect, feedback for observations or
65
- suggestions, and review-request/result for an auditable review gate. A chat
66
- message may wake a reviewer but is not the review record.
67
-
68
- For mutable Docman drafts, bind the review request to the exact composed
69
- evidence reference containing the page/document version id and its
70
- `contentHash=sha256:<digest>`. An approved result must repeat that complete
71
- reference exactly. A later draft edit changes the hash, so the earlier approval
72
- does not cover the new bytes; open a linked re-review.
73
-
74
- ## Status discipline
75
-
76
- 1. Inspect the record before changing status.
77
- 2. Use the exact nested help and stable IDs.
78
- 3. Apply one bounded mutation and read it back.
79
- 4. Mark done only after requested validation actually passes.
80
- 5. Ordinary session stop writes a handoff/status; board/room closeout remains
81
- an explicit operator decision.
82
-
83
- ## Raw fallback
84
-
85
- ```bash
86
- aops agent tools --domain projectman --q review --limit 20 --summary --json
87
- aops agent schema --tool projectman.<operation> --summary --json
88
- aops agent invoke --tool projectman.<operation> --input '@payload.json' --preview --json
89
- ```
90
-
91
- Do not guess raw fields. If sugar returns validation errors, compare the sugar
92
- payload with live schema before using a direct invoke workaround.
@@ -1,36 +0,0 @@
1
- ---
2
- name: aops-cli-sys
3
- description: Use for live Sys capabilities including counters, shared country lookup, event-store operations, and rate-limit state through schema-first AOPS agent tools.
4
- ---
5
-
6
- # Sys
7
-
8
- Sys is a mounted Community domain but has no dedicated sugar family. Start
9
- with compact live discovery and use raw invoke only after reading its schema.
10
- Detailed examples are in `../../user-guides/sys.md`.
11
-
12
- ```bash
13
- aops agent tools --domain sys --summary --json
14
- aops agent tools --domain sys --q country --limit 10 --examples --summary --json
15
- aops agent schema --tool sys.country.resolve-iso2 --summary --json
16
- ```
17
-
18
- The current capability families are:
19
-
20
- - `sys.counter.*` — tenant-scoped formatted counters;
21
- - `sys.country.*` — shared ISO country lookup/search;
22
- - `sys.event-store.*` — append/read/cleanup domain events;
23
- - `sys.rate-limiter.*` — check, record, reset, inspect, and cleanup limits.
24
-
25
- Reads can be invoked without `--apply`. Database mutations require `--apply`;
26
- cleanup/reset operations should be previewed and treated as destructive even
27
- when the live contract does not require a separate `--confirm` flag.
28
-
29
- ```bash
30
- aops agent invoke --tool sys.country.resolve-iso2 --input '{"body":{"iso2Code":"TR"}}' --json
31
- aops agent invoke --tool sys.counter.preview-next --input '{"body":{"counterKey":"inventory.item.code","prefix":"ITM","width":5}}' --json
32
- aops agent invoke --tool sys.counter.next --input '@counter-next.json' --preview --json
33
- ```
34
-
35
- Examples are illustrative. The connected server's `agent schema` and tool
36
- detail are authoritative for required fields, tenant context, and guard flags.
@@ -1,58 +0,0 @@
1
- ---
2
- name: aops-cli-view
3
- description: Use for read-only local-cache dashboards, board/task/sprint details, filtered lists, hosted inventory, and focused context digests through aops view.
4
- ---
5
-
6
- # AOPS view
7
-
8
- `aops view` reads local presentation caches and never mutates or synchronizes
9
- them. Use it for orientation and bounded context; use owner commands (`pm`,
10
- `mem`, `doc`, and others) for hosted writes.
11
-
12
- ## Fast paths
13
-
14
- ```bash
15
- aops view dashboard --style agent
16
- aops view boards
17
- aops view tasks --board <slug> --status Doing
18
- aops view sprints --board <slug> --status doing
19
- aops view issues --status open --severity high
20
- aops view feedback --status open
21
- ```
22
-
23
- Focused inspection accepts a full UUID, an unambiguous 8+ character ID prefix,
24
- a slug, or an exact title/name when supported:
25
-
26
- ```bash
27
- aops view board <selector>
28
- aops view task <selector>
29
- aops view sprint <selector> --max-items 20
30
- aops view memory --subject sprint --id <sprint-id>
31
- aops view discussions --status open
32
- ```
33
-
34
- ## Context packs
35
-
36
- ```bash
37
- aops view digest --task <task-id> --depth shallow
38
- aops view digest --sprint <sprint-id> --depth deep --max-bytes 32768
39
- aops view digest --board <board-slug> --depth deep
40
- ```
41
-
42
- Use shallow first; request deep only when linked memory/discussions/details are
43
- actually needed. Markdown is the human/agent default; add `--json` for stable
44
- automation.
45
-
46
- ## Hosted inventory
47
-
48
- ```bash
49
- aops view hosted-projects --style compact
50
- aops view hosted-inventory --hosted-project <slug> --scope-resolution explicit
51
- ```
52
-
53
- These are still read-only views. If output is stale, inspect `aops sync status
54
- --json` and refresh intentionally with `aops sync pull --apply --json`.
55
-
56
- For exact filters and output limits, run the relevant nested `--help`. Do not
57
- edit generated view files, treat a view as canonical hosted state, or dump a
58
- deep digest when a small selector read is enough.
@@ -1,66 +0,0 @@
1
- ---
2
- name: aops-working-disciplines
3
- description: Use only when the operator asks to choose, compare, or apply an AOPS working discipline such as solo, review-oriented, consensus-first, or coordinator-led work.
4
- ---
5
-
6
- # AOPS working disciplines
7
-
8
- Disciplines are optional working methods. Setup installs this reference so an
9
- agent can explain the choices, but neither setup nor gateway loading selects
10
- one. Read the relevant discipline only—not the whole guide—in
11
- `../../user-guides/working-disciplines.md`.
12
-
13
- Transport and method are separate:
14
-
15
- - mode: `solo`, `solo+async-review`, or `chat-room`;
16
- - discipline: the working method below.
17
-
18
- ## Choose the smallest method
19
-
20
- | Discipline | Use when | Core evidence |
21
- | --- | --- | --- |
22
- | `solo-pm-loop` | One agent can deliver the bounded work | PM status, focused validation, handoff |
23
- | `build-review-chat` | Implementation benefits from an independent review | PM review-request/result; chat only wakes |
24
- | `design-first-consensus` | A material design decision needs independent stances before build | Discuss conclusion linked to plan |
25
- | `coordinator-loop` | Several delegated slices need explicit coordinator ownership | Projectman policy, slice tasks/reviews, integration gate |
26
-
27
- Do not choose a heavier discipline solely because multiple tools exist. The
28
- operator owns agent count, identities, roles, and closeout authority.
29
-
30
- ## Compose startup
31
-
32
- ```bash
33
- aops start --help
34
- aops start --task "<task>" --mode solo \
35
- --discipline solo-pm-loop --json --out ./aops-start.md
36
- aops start --task "<task>" --mode chat-room \
37
- --discipline build-review-chat --json --out ./aops-start.md
38
- ```
39
-
40
-
41
- ```bash
42
- --policy-json '@policy.json' --apply --json
43
- ```
44
-
45
- ## Shared guardrails
46
-
47
- 1. Put every implementation slice in Projectman before or at kickoff.
48
- 2. Read live help/schema instead of guessing flags or payloads.
49
- 3. Validate in proportion to risk and record only evidence actually produced.
50
- 4. Use ChatV3 (`aops chat`) for coordination/wake, Discuss for consensus, and
51
- Projectman review-request/result for review truth.
52
- 5. Keep scope changes and blockers explicit; do not fabricate peer approval.
53
- 6. Ordinary stop writes status/handoff and keeps board/room open.
54
-
55
- ## Discipline-specific minimums
56
-
57
- - `solo-pm-loop`: orient → plan bounded slice → implement → validate → handoff.
58
- - `build-review-chat`: implementer validates → creates PM review request →
59
- reviewer records result → material findings become issues/fix slices.
60
- - `design-first-consensus`: independent research/turns → every participant
61
- records final stance → conclude → bind decision to implementation plan.
62
- - `coordinator-loop`: coordinator assigns non-overlapping slices → each owner
63
- reports validation → independent review/integration gate → operator closeout.
64
-
65
- Use `aops start --reminder --task "<task>" --area <area> --json` for a bounded
66
- mid-session refresh instead of reloading the full discipline guide.
@@ -1,81 +0,0 @@
1
- # AOPS Community client assets
2
-
3
- Community client assets are installed from an independently signed
4
- agent-assets bundle included in the npm CLI. This asset identity is separate
5
- from application-image releases. The logical user-local data root is
6
- `~/.aops/agent-assets`.
7
- Every agent runtime registered by the installed CLI receives one managed
8
- `skills/aops/SKILL.md` gateway. Today this includes Codex and Claude; future
9
- runtimes can join the same registry without changing the asset model. The
10
- gateway resolves the immutable core package rather than copying every AOPS
11
- reference into each runtime.
12
-
13
- ## Install and verify
14
-
15
- Use guided setup when configuring a new machine or server target:
16
-
17
- ```text
18
- aops setup init
19
- ```
20
-
21
- Use the normal explicit lifecycle from the installed npm package:
22
-
23
- ```text
24
- aops assets install --target all --apply --json
25
- aops assets status --verify quick --json
26
- ```
27
-
28
- Install verifies signed expected digests, refuses unowned runtime files, and
29
- does not use a repository as the source of core bytes. `status` is read-only;
30
- `--verify full` additionally rehashes every active, previous, and pinned
31
- immutable package file.
32
-
33
- `--target all` expands to every runtime registered by this CLI. A single
34
- runtime, comma-separated subset, or repeated `--target` is also accepted;
35
- `both` is not a selector. `--from-release` is only a maintainer/offline recovery
36
- override—the normal npm package resolves its verified bundled asset release.
37
-
38
- ## Discover only what is needed
39
-
40
- ```text
41
- aops assets resolve --gateway aops --json
42
- aops assets discover --query "<intent or domain>" --limit 5 --json
43
- aops assets resolve --name <exact-name> --json
44
- ```
45
-
46
- Discovery returns bounded metadata candidates before any body is loaded.
47
- Resolve only the selected exact asset. The verified offline core includes a
48
- small neutral router, mounted-domain references, on-demand user guides, and the
49
- current working-discipline references. Setup makes those choices available;
50
- it does not silently select a board model, communication mode, or discipline.
51
- Optional hosted catalog packages also remain inert until explicitly selected.
52
-
53
- The core deliberately excludes private development architecture, machine
54
- paths, repository caches, and domains not mounted by Community. Exact live
55
- capability discovery remains the authority when a server adds custom domains.
56
-
57
- ## Local and remote ownership
58
-
59
- The AOPS server may run locally or on another machine. Hosted records and
60
- optional packages remain server-owned; the verified client store, activation
61
- receipts, and runtime gateway stay on the user's machine. Repository caches do
62
- not replace or shadow the installed core.
63
-
64
- Fresh server setup may import an inert signed official catalog for optional
65
- discovery. `aops setup init --no-catalog` skips that initial import only; it
66
- does not remove existing rows or change the offline core.
67
-
68
- ## Diagnose before repair
69
-
70
- ```text
71
- aops assets status --verify quick --json
72
- aops assets repair --json
73
- aops assets migrate inspect --json
74
- ```
75
-
76
- Mutations preview by default and require `--apply`. Destructive cleanup or an
77
- ownership transition additionally requires `--confirm`. Unknown or user-owned
78
- runtime files are reported and left untouched.
79
-
80
- Use `aops assets --help` and the selected subcommand's `--help` as the exact
81
- flag and safety contract for the installed CLI version.