mission69b

41 mods across 1 repository, 23 stars between them.

next

01

mission69b/t2000

Command Claude Code

Read the forward backlog and propose the next task to work on.

23 2d ago A 12 tokens original MIT

release

02

mission69b/t2000

Command Claude Code

Cut an npm release of all 5 @t2000 packages via the GitHub Release workflow.

23 2d ago A 19 tokens original MIT

ship

03

mission69b/t2000

Command Claude Code

Walk the ship checklist for a feature — surfaces, docs, and the catalog-from-live-truth rule.

23 2d ago A 20 tokens original MIT

tracker

04

mission69b/t2000

Command Claude Code

Append a new S.N entry to audric-build-tracker.md for the work just shipped.

23 2d ago A 18 tokens original MIT

t2000

05

mission69b/t2000

Settings file Claude Code

Agent settings declaring 42 allowed tools.

23 2d ago A tokens not measured original MIT

accessing-data

06

mission69b/t2000

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…

23 2d ago A 102 tokens original MIT

mission69b/t2000

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.

23 2d ago A 51 tokens original MIT

modern-move-syntax

08

mission69b/t2000

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.

23 2d ago A 58 tokens original MIT

move-unit-testing

09

mission69b/t2000

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.

23 2d ago A 52 tokens original MIT

naming-conventions

10

mission69b/t2000

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.

23 2d ago A 59 tokens original MIT

ptbs

11

mission69b/t2000

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…

23 2d ago A 72 tokens original MIT

sui-move

12

mission69b/t2000

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…

23 2d ago A 148 tokens original MIT

sui-object-model

13

mission69b/t2000

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…

23 2d ago A 152 tokens original MIT

sui-publish

14

mission69b/t2000

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…

23 2d ago A 133 tokens original MIT

sui-sdks

15

mission69b/t2000

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…

23 2d ago A 104 tokens original MIT

t2000-design-system

16

mission69b/t2000

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.…

23 2d ago A 130 tokens original MIT

t2000-engineering

17

mission69b/t2000

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…

23 2d ago A 137 tokens original MIT

t2000-env-gate

18

mission69b/t2000

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…

23 2d ago A 120 tokens original MIT

mission69b/t2000

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…

23 2d ago A 106 tokens original MIT

mission69b/t2000

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…

23 2d ago A 106 tokens original MIT

t2000-sui-platform

21

mission69b/t2000

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…

23 2d ago A 151 tokens original MIT

design-system

22

mission69b/t2000

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…

23 2d ago A 0 tokens original MIT

mission69b/t2000

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/.

23 2d ago A 656 tokens original MIT

env-validation-gate

24

mission69b/t2000

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/.

23 2d ago A 292 tokens original MIT