@oneie/claude 0.6.0 → 0.7.0

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 (111) hide show
  1. package/agents/w1-recon.md +9 -4
  2. package/agents/w2-decide.md +51 -28
  3. package/agents/w3-edit.md +70 -78
  4. package/agents/w4-verify.md +164 -69
  5. package/commands/browser.md +98 -35
  6. package/commands/cc-connect.md +6 -0
  7. package/commands/chat.md +13 -1
  8. package/commands/close.md +45 -19
  9. package/commands/create.md +20 -10
  10. package/commands/db-sync.md +5 -1
  11. package/commands/deploy.md +174 -87
  12. package/commands/do-autonomous.md +31 -20
  13. package/commands/do-improve.md +4 -4
  14. package/commands/do-show.md +4 -3
  15. package/commands/do.md +53 -13
  16. package/commands/go.md +75 -0
  17. package/commands/improve.md +4 -2
  18. package/commands/kill.md +6 -8
  19. package/commands/notify.md +15 -2
  20. package/commands/oo-push.md +24 -9
  21. package/commands/rag.md +6 -0
  22. package/commands/release.md +46 -25
  23. package/commands/restart.md +5 -4
  24. package/commands/see.md +45 -35
  25. package/commands/skill-create.md +38 -5
  26. package/commands/sync.md +21 -11
  27. package/hooks/scripts/auto-continue.sh +70 -0
  28. package/hooks/scripts/branch-pin.sh +85 -0
  29. package/hooks/scripts/git-add-guard.sh +16 -5
  30. package/hooks/scripts/post-edit-check.sh +16 -0
  31. package/hooks/scripts/session-start.sh +13 -8
  32. package/hooks/scripts/sync-priority-todo.sh +5 -0
  33. package/package.json +1 -1
  34. package/rules/api.md +9 -0
  35. package/rules/design.md +13 -3
  36. package/rules/documentation.md +30 -71
  37. package/rules/engine.md +8 -1
  38. package/rules/ui.md +5 -1
  39. package/scripts/__pycache__/do-rank.cpython-313.pyc +0 -0
  40. package/scripts/browser-check.mjs +44 -103
  41. package/scripts/cc-events-proof.sh +13 -12
  42. package/scripts/chrome.mjs +381 -0
  43. package/scripts/do-analyze.sh +109 -4
  44. package/scripts/do-auto.sh +350 -43
  45. package/scripts/do-consumer-sweep.sh +72 -0
  46. package/scripts/do-derives-check.sh +88 -0
  47. package/scripts/do-fleet.sh +50 -1
  48. package/scripts/do-killswitch-audit.py +33 -14
  49. package/scripts/do-promise-lint.sh +150 -4
  50. package/scripts/do-promise-settle.sh +131 -9
  51. package/scripts/do-prove.sh +197 -17
  52. package/scripts/do-rank.py +606 -20
  53. package/scripts/do-rubric.py +21 -2
  54. package/scripts/do-signal.sh +157 -17
  55. package/scripts/do-smoke.sh +9 -0
  56. package/scripts/do-substrate-check.sh +49 -0
  57. package/scripts/do-tasks-wire-check.sh +81 -0
  58. package/scripts/do-tier.sh +90 -5
  59. package/scripts/do-ui-gate.sh +332 -0
  60. package/scripts/do-untracked-gate.sh +231 -0
  61. package/scripts/do-walk.sh +344 -0
  62. package/scripts/factory-check.sh +747 -0
  63. package/scripts/factory-repo.sh +1361 -0
  64. package/scripts/factory-tasks-check.sh +85 -0
  65. package/scripts/outcome-pull.ts +279 -0
  66. package/scripts/promise-manifest.mjs +167 -0
  67. package/scripts/reconcile-allow.txt +5 -0
  68. package/scripts/rubric-weights.json +64 -0
  69. package/scripts/spine-canary.sh +20 -0
  70. package/scripts/typedb-cluster-status.sh +128 -0
  71. package/scripts/typedb-env.sh +182 -0
  72. package/scripts/typedb-flap-recorder.sh +85 -0
  73. package/scripts/typedb-probes/containment-probe.py +88 -0
  74. package/scripts/typedb-probes/panic-probe-version.py +92 -0
  75. package/scripts/typedb-probes/panic-probe.py +77 -0
  76. package/scripts/typedb-scratch.sh +73 -0
  77. package/scripts/urls-lint.sh +58 -0
  78. package/scripts/w4-rubric.ts +96 -12
  79. package/scripts/wf-check.mjs +75 -0
  80. package/skills/ai-ui/SKILL.md +1 -1
  81. package/skills/astro/SKILL.md +177 -132
  82. package/skills/astro/add-content-collection.md +29 -13
  83. package/skills/astro/check-build.md +19 -13
  84. package/skills/astro/create-component.md +36 -9
  85. package/skills/astro/create-page.md +39 -10
  86. package/skills/astro/optimize-performance.md +36 -8
  87. package/skills/cli/SKILL.md +254 -220
  88. package/skills/dev/SKILL.md +1 -1
  89. package/skills/directory-autofill/SKILL.md +68 -0
  90. package/skills/docs/SKILL.md +4 -4
  91. package/skills/mcp/SKILL.md +186 -156
  92. package/skills/promise-make/SKILL.md +2 -2
  93. package/skills/puck/SKILL.md +465 -250
  94. package/skills/react19/SKILL.md +196 -296
  95. package/skills/reactflow/SKILL.md +387 -412
  96. package/skills/sdk/SKILL.md +167 -106
  97. package/skills/shadcn/SKILL.md +245 -201
  98. package/skills/signal/SKILL.md +5 -0
  99. package/skills/sui/SKILL.md +6 -1
  100. package/skills/tutorial/SKILL.md +15 -0
  101. package/skills/typedb/SKILL.md +427 -217
  102. package/skills/typedb/examples/python-patterns.py +11 -4
  103. package/skills/typedb/examples/query-patterns.tql +8 -3
  104. package/skills/typedb/examples/schema-patterns.tql +4 -2
  105. package/skills/typedb/reference/migration-2x-3x.md +19 -1
  106. package/skills/typedb/reference/python-driver.md +17 -1
  107. package/skills/voice/SKILL.md +117 -0
  108. package/skills/writer/SKILL.md +29 -12
  109. package/templates/template-feature.md +26 -1
  110. package/templates/template-tests.md +4 -0
  111. package/templates/template-todo.md +65 -10
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: signal
3
+ description: Emit a signal and close the loop — the `{ receiver, data }` primitive every surface in ONE compiles to, and the Rule-1 contract the hook scripts cite. Use when picking a receiver name or prefix (`ui:*`, `tool:*`, `hook:*`, `cli:*`, `do:*`, `w4:*`), choosing the weight that closes a loop (result +1 / timeout 0 / dissolved -0.5 / failure -1), wiring an emitter from a bash hook, an API route, a React onClick, or a substrate task, or debugging why `POST /api/signal` rejected a receiver (regex, length, toxicity, ADL lifecycle 410 / allowedHosts 403). Triggers — "emit a signal", "what receiver name should I use", "how do I close the loop", "mark or warn or dissolve", "weight for a timeout", "emit_signal from a hook", "emitClick receiver naming", "/api/signal returned 410", "signal never showed up in paths".
4
+ ---
5
+
1
6
  # Signal — The Universal Primitive
2
7
 
3
8
  **Receiver names the edge. Weight deposits pheromone. Tags classify. Everything else is convention.**
@@ -1,10 +1,15 @@
1
+ ---
2
+ name: sui
3
+ description: Write Move contracts and Sui client code for the ONE substrate — `one.move`, `src/lib/sui.ts`, and the `bridge.ts` mirror/absorb loop. Use when editing a Move module (Unit, Signal, Path, Escrow, Highway, Treasury), deriving an agent wallet or keypair from a uid, wiring escrow (create/release/cancel) or x402 settlement, mirroring mark/warn on-chain or absorbing Sui events back into TypeDB, or fixing a `@mysten/sui` v1 import that does not exist in v2 (`SuiClient` → `SuiJsonRpcClient`, `getFullnodeUrl` → `getJsonRpcFullnodeUrl`, constructor now requires `network`). Also covers Move 2024 style rules and the upgradeability freeze on public struct layouts and function signatures. Triggers — "write a Move contract", "add a function to one.move", "derive an agent wallet", "Sui escrow", "does not provide an export named SuiClient", "@mysten/sui v2 migration", "mirror marks on-chain", "absorb Sui events", "deploy to testnet", "sui-unit-id / sui-path-id".
4
+ ---
5
+
1
6
  # Sui Move Skill
2
7
 
3
8
  Build secure, production-ready Move contracts for the ONE substrate and agent ecosystem.
4
9
 
5
10
  **Status:** Phase 1 (testnet) ✅ · Phase 2 (identity & wallets) ✅ shipped 2026-04-18 · Phase 3 (escrow) scaffolding shipped, W3-W4 ready per `docs/SUI-todo.md`. Phase 4-6 next.
6
11
 
7
- **Package versions (locked):** `@mysten/sui@^2.16.0`, `@mysten/dapp-kit@^1.0.4`. SDK is **v2** — imports are NOT backward-compatible with v1. See "SDK Imports (Sui v2)" below before writing any Sui code.
12
+ **Package versions (locked):** `@mysten/sui@^2.20.0`, `@mysten/dapp-kit@^1.1.0`. SDK is **v2** — imports are NOT backward-compatible with v1. (`pay/tools/v1/` deliberately stays on `@mysten/sui@^1.45.0` as a pinned v1 holdout — it is the one place v1 patterns are correct.) See "SDK Imports (Sui v2)" below before writing any Sui code.
8
13
 
9
14
  ## What This Skill Does
10
15
 
@@ -5,6 +5,21 @@ user-invocable: true
5
5
  allowed-tools: Bash(*), Read(*), Edit(*), Write(*), Glob(*), Grep(*), WebFetch(*)
6
6
  ---
7
7
 
8
+ > **DEPRECATED — DO NOT FOLLOW**
9
+ >
10
+ > **The API this skill drives was removed.** There is no
11
+ > `one.ie/web/src/pages/api/tutorial*` route — verify with
12
+ > `find one.ie/web/src/pages/api -iname "*tutorial*"` (returns nothing).
13
+ >
14
+ > Every step below is non-functional: each `curl` against
15
+ > `http://localhost:4321/api/tutorial` 404s, so all seven phases fail and no
16
+ > substrate state is created.
17
+ >
18
+ > **Do not follow this walkthrough, and do not convert it to a directory skill,
19
+ > until the tutorial routes return.** Deleting or de-registering it is the
20
+ > operator's call. The content is kept below only as a record of the intended
21
+ > flow.
22
+
8
23
  # /tutorial — The Complete Lifecycle
9
24
 
10
25
  Interactive walkthrough of the ONE substrate. Seven phases. The API does the work.