next
01Command Claude Code
Read the forward backlog and propose the next task to work on.
Command Claude Code
Read the forward backlog and propose the next task to work on.
Command Claude Code
Cut an npm release of all 5 @t2000 packages via the GitHub Release workflow.
Command Claude Code
Walk the ship checklist for a feature — surfaces, docs, and the catalog-from-live-truth rule.
Command Claude Code
Append a new S.N entry to audric-build-tracker.md for the work just shipped.
Settings file Claude Code
Agent settings declaring 42 allowed tools.
Skill Claude CodeCodex
How to read data from the Sui network. Use when choosing or implementing a data access strategy — queries for on-chain state, indexing pipelines, historical lookups, event subscriptions, cross-chain reads, or off-chain blob storage. Covers the three live Sui APIs (gRPC, GraphQL RPC, deprecated JSON-RPC), the Archival…
Skill Claude CodeCodex
Use when writing Move functions on Sui, especially public APIs. Applies to function visibility (public vs entry), parameter ordering, and return patterns. Use whenever designing function signatures or deciding whether functions should transfer objects or return them.
Skill Claude CodeCodex
Use when writing Move code on Sui to ensure 2024 edition syntax is used. Applies to method calls, string literals, vector operations, option handling, loops, and struct unpacking. Use whenever writing Move code to avoid legacy function-call syntax patterns.
Skill Claude CodeCodex
Use when writing unit tests for Move smart contracts on Sui. Applies to test function naming, assertions, test attributes, context usage, and cleanup patterns. Use whenever user asks to write tests, add tests, or test a Move module.
Skill Claude CodeCodex
Use when writing or reviewing Move smart contracts on Sui. Applies to naming structs, error constants, regular constants, events, getter functions, capability types, hot potato types, and dynamic field keys. Use whenever creating new types, functions, or constants in Move code.
Skill Claude CodeCodex
Sui Programmable Transaction Blocks (PTBs). Use when writing, reviewing, or debugging code that composes multiple Sui transaction commands into a single atomic transaction — including TypeScript SDK Transaction usage, CLI PTB construction, gas coin handling, sponsored transactions, shared-object inputs, chaining…
Skill Claude CodeCodex
Sui Move smart contract development. Use when writing, reviewing, or debugging Move code on Sui. Covers Move abilities (key, store, copy, drop), TxContext, init functions, One-Time Witness, package publishing and upgrades, resource safety, events, and coins. Also use when the user asks about struct abilities, UID, how…
Skill Claude CodeCodex
Deep reference for the Sui object model: ownership types, object abilities, dynamic fields, collections, versioning, transfer patterns, and derived objects. Use this skill whenever the user asks about Sui objects, object ownership (address-owned, shared, immutable, wrapped), how to transfer or share or freeze objects…
Skill Claude CodeCodex
Publishing, upgrading, and deploying Sui Move packages. Use this skill when the user needs to publish a package, upgrade a published package, deploy to multiple networks, serialize transactions for multisig signing, run a local Sui network (localnet), prepare for Mainnet launch, monitor production deployments, or…
Skill Claude CodeCodex
Sui SDK landscape — which SDK to pick (TypeScript, Rust, or community-maintained Python/Go/Dart/Kotlin/Swift), how they map to each other, and how to install and wire each one up. Use when a user is starting a new Sui project in any language, migrating between languages, comparing APIs across SDKs, or asking "what SDK…
Skill Claude CodeCodex
The t2000 family design system — token VALUES are copy-in and owned per-app (no shared tokens directory or package; this monorepo ships no UI after kill-web), shadcn primitives are owned per-app, the house look is a seamless near-black dark theme with a per-app --t2k-accent, and @t2000/ui must never be reintroduced.…
Skill Claude CodeCodex
The deep version of the t2000 engineering discipline — trace-the-full-path debugging, verifiable success criteria, simplicity/surgical-change rules, complete-removal (no orphans), and the Musk product algorithm. CLAUDE.md carries the one-line assertions; read this for the worked examples, the ask-vs-proceed test, the…
Skill Claude CodeCodex
The cross-app env-validation contract — every app with ≥1 required env var validates at boot via a Zod schema and exposes values through a typed env proxy; raw process.env.X reads are banned outside the env module. Use when adding or renaming an environment variable, wiring up a new app in apps/, writing or reviewing…
Skill Claude CodeCodex
Money and token-metadata safety — floor display amounts (never round up), per-token decimal precision, preset/chip amount math, and the canonical token registry that owns every coin type and decimal count. Use when formatting or displaying a balance, computing a max/percentage/preset amount, converting between display…
Skill Claude CodeCodex
The machine front door — t2000.ai/llms.txt (the apex machine playbook) and the agent-skills well-known manifest. Use when editing llms.txt or any .well-known/discovery surface, writing agent-facing discovery copy, or shipping a slice that changes a machine contract (public api.t2000.ai/v1 paths, CLI marketplace/wallet…
Skill Claude CodeCodex
Sui platform patterns for throughput and gas — Address Balances (SIP-58) accumulators that let ONE address run concurrent txs, and gasless stablecoin transfers that remove the "you need SUI to send USDC" wall. Includes the eligibility gotchas that cause misleading failures (0.01 minimum, the dust-remainder floor…
Cursor rule Cursor
The model in one line: share VALUES by copy-in (design-tokens/tokens.css, pure CSS variables only), own COMPONENTS per-app (shadcn in components/ui/), and never ship a shared UI/token package again — @t2000/ui was removed 2026-07-01 because it bundled a marketing global stylesheet and packaged primitives a consumer's…
Cursor rule Cursor
Core engineering discipline — trace before fix, verifiable goals, simplicity, complete removal, Musk algorithm. The always-on assertions; depth lives in .claude/skills/t2000-engineering/.
Cursor rule Cursor
Env validation gate — every app with ≥1 required env var validates its contract at boot via Zod; raw process.env is banned outside the env module. Full pattern in .claude/skills/t2000-env-gate/.