@aopslabs/aops 0.3.31 → 0.3.33

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,5 +1,6 @@
1
1
  import fs from 'node:fs/promises';
2
2
  import path from 'node:path';
3
+ import { resolveRepoFirstWorkspaceRoot } from './repo-first-storage.js';
3
4
  const DEFAULT_CHECKPOINT_DELAY_MINUTES = 30;
4
5
  const DEFAULT_SUMMARY_DELAY_MINUTES = 120;
5
6
  function stringValue(value) {
@@ -45,13 +46,7 @@ function repoRelative(repoRoot, filePath) {
45
46
  return path.relative(repoRoot, filePath).split(path.sep).join('/');
46
47
  }
47
48
  function sessionStateDirs(repoRoot, localRoot) {
48
- const dirs = [path.join(repoRoot, '.aops', 'agentspace', 'session-state')];
49
- if (localRoot) {
50
- const localDir = path.join(repoRoot, localRoot, 'agentspace', 'session-state');
51
- if (!dirs.includes(localDir))
52
- dirs.push(localDir);
53
- }
54
- return dirs;
49
+ return [path.join(resolveRepoFirstWorkspaceRoot({ repoRoot, localRoot }), 'agentspace', 'session-state')];
55
50
  }
56
51
  async function readJsonFiles(dir) {
57
52
  let entries;
File without changes
File without changes
package/package.json CHANGED
@@ -1,21 +1,69 @@
1
1
  {
2
2
  "name": "@aopslabs/aops",
3
- "version": "0.3.31",
3
+ "version": "0.3.33",
4
4
  "type": "module",
5
5
  "description": "AOPS CLI and terminal setup application.",
6
6
  "aopsDockerServerVersion": "0.2.17",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/eeemzs/aops-platform.git",
11
- "directory": "apps/aops-cli"
10
+ "url": "https://github.com/eeemzs/tsapps.git",
11
+ "directory": "apps/aops-platform/apps/aops-cli"
12
12
  },
13
13
  "bin": {
14
14
  "aops": "dist/main.js",
15
15
  "aops-cli": "dist/main.js"
16
16
  },
17
+ "files": [
18
+ "dist",
19
+ "launchers",
20
+ "assets/skills",
21
+ "assets/r6-remote-session-baseline.json",
22
+ "aops-assets-release",
23
+ "native",
24
+ "LICENSE",
25
+ "NOTICE",
26
+ "THIRD_PARTY_NOTICES"
27
+ ],
28
+ "dependencies": {
29
+ "@aopslabs/artifact-trust-contracts": "0.3.2",
30
+ "@aopslabs/cli-kit": "0.1.0",
31
+ "@sigstore/bundle": "4.0.0",
32
+ "@sigstore/protobuf-specs": "0.5.1",
33
+ "@sigstore/tuf": "4.0.2",
34
+ "@sigstore/verify": "3.1.1",
35
+ "@aopslabs/domain-product-client-chatv3": "0.4.2",
36
+ "@aopslabs/xf-cli-ui": "0.2.0",
37
+ "commander": "14.0.3",
38
+ "pg": "8.20.0",
39
+ "sigstore": "4.1.1",
40
+ "@openai/codex-sdk": "0.149.0",
41
+ "@anthropic-ai/claude-agent-sdk": "0.3.241",
42
+ "@opencode-ai/sdk": "1.18.21",
43
+ "@aopslabs/aops-server": "0.2.27",
44
+ "@aopslabs/aops-pg-bootstrap": "0.2.9",
45
+ "@aopslabs/aops-runtime-config": "0.2.3",
46
+ "@aopslabs/api-client": "0.2.3",
47
+ "@aopslabs/aops-agent-runtime": "0.1.1",
48
+ "@aopslabs/aops-host-registration": "0.2.3"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "25.3.1",
52
+ "@types/pg": "8.20.0",
53
+ "typescript": "5.9.3"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public",
57
+ "registry": "https://registry.npmjs.org"
58
+ },
17
59
  "scripts": {
18
60
  "build": "node --eval \"const { rmSync } = require('node:fs'); rmSync('dist', { recursive: true, force: true });\" && tsc -p tsconfig.json --incremental false",
61
+ "build:claude-subscription": "pnpm run build && tsc -p tsconfig.claude-subscription.json --incremental false",
62
+ "docs:user-guide": "pnpm run build && node scripts/generate-user-guide.mjs",
63
+ "docs:docman-user-guide": "pnpm run build && node scripts/generate-user-guide.mjs --guide docman",
64
+ "docs:tasker-user-guide": "pnpm run build && node scripts/generate-user-guide.mjs --guide tasker --source ../../../../domains/tasker/USER_GUIDE.md --out ../../../../domains/tasker/USER_GUIDE.md",
65
+ "docs:tasker-user-guide:check": "pnpm run build && node scripts/generate-user-guide.mjs --guide tasker --source ../../../../domains/tasker/USER_GUIDE.md --check",
66
+ "test:user-guide": "pnpm run build && node --test test/user-guide-sections.test.mjs",
19
67
  "test:assets-menu": "node --test test/assets-menu.test.mjs",
20
68
  "test:agent-assets-content": "node --test test/agent-assets-content.test.mjs",
21
69
  "test:cockpit": "node --test test/cockpit.test.mjs",
@@ -26,6 +74,7 @@
26
74
  "test:backup-gate-parity": "node --test test/community-backup-gate-parity.test.mjs test/community-backup-list.test.mjs test/community-native-backup.test.mjs test/pg-client-acquisition.test.mjs",
27
75
  "test:owned-set-seam": "node --test test/owned-set-snapshot-seam.test.mjs",
28
76
  "test:migration-auto-dump": "node --test test/community-migration-auto-dump.test.mjs",
77
+ "test:managed-migration-rollback": "pnpm run build && node scripts/run-managed-migration-rollback-test.mjs",
29
78
  "test:memory-search-window": "node --test test/memory-search-window-shape.test.mjs",
30
79
  "test:db-restore-source-root": "node --test test/db-restore-source-root.test.mjs",
31
80
  "test:operation-journal": "node --test test/community-operation-journal.test.mjs",
@@ -44,6 +93,7 @@
44
93
  "test:chatv3-session-store": "node --test test/chatv3-session-store.test.mjs",
45
94
  "test:projectman-review-evidence": "node --test test/projectman-review-evidence.test.mjs",
46
95
  "test:projectman-pm-contract": "node --test test/projectman-pm-contract.test.mjs",
96
+ "test:tasker-sugar": "node --test test/tasker-sugar.test.mjs",
47
97
  "test:commercial-lifecycle-scale-effects": "node --test test/commercial-lifecycle-scale-effects.test.mjs",
48
98
  "test:commercial-lifecycle-managed-effects": "node --test test/commercial-lifecycle-managed-effects.test.mjs",
49
99
  "test:commercial-lifecycle-negative-effects": "node --test test/commercial-lifecycle-negative-effects.test.mjs",
@@ -65,41 +115,23 @@
65
115
  "test:hosted-contract-hardening": "node --test test/hosted-contract-hardening.test.mjs",
66
116
  "test:home": "node --test test/home-menu.test.mjs",
67
117
  "test:launchers": "node --test test/terminal-launchers.test.mjs",
68
- "test:shortcuts": "pnpm --dir ../.. run build && pnpm run test:home && pnpm run test:cockpit && pnpm run test:launchers && pnpm run test:assets-menu && pnpm run test:agent-assets-content && pnpm run test:chatv3-session-store && pnpm run test:projectman-review-evidence && pnpm run test:projectman-pm-contract && pnpm run test:setup-install && pnpm run test:container-runtime && pnpm run test:native-lifecycle && pnpm run test:migration-snapshot-gate && pnpm run test:backup-gate-parity && pnpm run test:migration-auto-dump && pnpm run test:memory-search-window && pnpm run test:db-restore-source-root && pnpm run test:operation-journal && pnpm run test:commercial-canonical-order && pnpm run test:commercial-runtime-closure && pnpm run test:commercial-artifact && pnpm run test:commercial-final-readiness && pnpm run test:commercial-admission && pnpm run test:commercial-license && pnpm run test:commercial-runbook && pnpm run test:package-identity && pnpm run test:tui-launcher && pnpm run test:global-update && pnpm run test:skill-discovery && pnpm run test:target-transport && pnpm run test:target-auth && pnpm run test:r6-auth-cutover && pnpm run test:r6-cutover-baseline && pnpm run test:hosted-contract-hardening && pnpm run test:server-instance-option && pnpm run test:snapshot-provider && pnpm run test:snapshot-verify-fd",
69
- "typecheck": "tsc -p tsconfig.json --noEmit",
118
+ "test:shortcuts": "pnpm --dir ../.. run build && pnpm run test:home && pnpm run test:cockpit && pnpm run test:launchers && pnpm run test:assets-menu && pnpm run test:agent-assets-content && pnpm run test:chatv3-session-store && pnpm run test:projectman-review-evidence && pnpm run test:projectman-pm-contract && pnpm run test:tasker-sugar && pnpm run test:setup-install && pnpm run test:container-runtime && pnpm run test:native-lifecycle && pnpm run test:migration-snapshot-gate && pnpm run test:backup-gate-parity && pnpm run test:migration-auto-dump && pnpm run test:memory-search-window && pnpm run test:db-restore-source-root && pnpm run test:operation-journal && pnpm run test:commercial-canonical-order && pnpm run test:commercial-runtime-closure && pnpm run test:commercial-artifact && pnpm run test:commercial-final-readiness && pnpm run test:commercial-admission && pnpm run test:commercial-license && pnpm run test:commercial-runbook && pnpm run test:package-identity && pnpm run test:tui-launcher && pnpm run test:global-update && pnpm run test:skill-discovery && pnpm run test:target-transport && pnpm run test:target-auth && pnpm run test:r6-auth-cutover && pnpm run test:r6-cutover-baseline && pnpm run test:hosted-contract-hardening && pnpm run test:server-instance-option && pnpm run test:snapshot-provider && pnpm run test:snapshot-verify-fd && pnpm run test:loop",
119
+ "typecheck": "tsc -p tsconfig.json --noEmit --incremental false",
70
120
  "start": "node dist/main.js",
71
121
  "test:chat-wake-watch": "node --test test/chat-wake-watch.test.mjs",
72
122
  "test:codex-wake": "node --test test/codex-wake.test.mjs",
73
123
  "test:commercial-lifecycle-evidence": "node --test test/commercial-lifecycle-evidence.test.mjs test/commercial-lifecycle-evidence-projection.test.mjs",
74
124
  "test:commercial-effects": "node --test test/commercial-interruption-removal-effects.test.mjs test/commercial-natural-controls-effects.test.mjs test/commercial-transition-effects.test.mjs",
75
- "test:pg-client-acquisition": "node --test test/pg-client-acquisition.test.mjs"
76
- },
77
- "dependencies": {
78
- "@aopslabs/aops-agent-runtime": "0.1.0",
79
- "@aopslabs/aops-server": "0.2.25",
80
- "@aopslabs/artifact-trust-contracts": "0.3.1",
81
- "@aopslabs/cli-kit": "0.1.0",
82
- "@aopslabs/aops-host-registration": "0.2.2",
83
- "@aopslabs/aops-pg-bootstrap": "0.2.8",
84
- "@aopslabs/aops-runtime-config": "0.2.2",
85
- "@sigstore/bundle": "4.0.0",
86
- "@sigstore/protobuf-specs": "0.5.1",
87
- "@sigstore/tuf": "4.0.2",
88
- "@sigstore/verify": "3.1.1",
89
- "@aopslabs/api-client": "0.2.2",
90
- "@aopslabs/domain-product-client-chatv3": "0.4.2",
91
- "@aopslabs/xf-cli-ui": "0.2.0",
92
- "commander": "14.0.3",
93
- "pg": "8.20.0",
94
- "sigstore": "4.1.1"
95
- },
96
- "devDependencies": {
97
- "@types/node": "25.3.1",
98
- "@types/pg": "8.20.0",
99
- "typescript": "5.9.3"
100
- },
101
- "publishConfig": {
102
- "access": "public",
103
- "registry": "https://registry.npmjs.org"
125
+ "test:pg-client-acquisition": "node --test test/pg-client-acquisition.test.mjs",
126
+ "test:loop-nesting-guard": "node --test test/loop-nesting-guard.test.mjs",
127
+ "test:loop-worktree-lifecycle": "node --test test/loop-worktree-lifecycle.test.mjs",
128
+ "test:loop-harness-permissions": "node --test test/loop-harness-permissions.test.mjs",
129
+ "test:loop-model-resolution": "node --test test/loop-model-resolution.test.mjs",
130
+ "test:loop-live-smoke": "node scripts/loop-live-smoke.mjs",
131
+ "test:loop-child-marker": "node --test test/loop-child-marker.test.mjs",
132
+ "test:loop": "node --test test/loop-*.test.mjs test/loop-legacy.test.ts",
133
+ "test:claude-subscription-build": "pnpm run build:claude-subscription && node --test test/claude-subscription-build.test.mjs",
134
+ "test:loop-refusal-contract": "node --test test/loop-refusal-contract.test.mjs",
135
+ "test:loop-legacy": "node --test test/loop-legacy.test.ts"
104
136
  }
105
- }
137
+ }