Guidelines for AI coding agents working in this Rust async runtime codebase.
If I tell you to do something, even if it goes against what follows below, YOU MUST LISTEN TO ME. I AM IN CHARGE, NOT YOU.
YOU ARE NEVER ALLOWED TO DELETE A FILE WITHOUT EXPRESS PERMISSION. Even a new file that you yourself created, such as a test code file. You have a horrible track record of deleting critically important files or otherwise throwing away tons of expensive work. As a result, you have permanently lost any and all rights to determine that a file or folder should be deleted.
YOU MUST ALWAYS ASK AND RECEIVE CLEAR, WRITTEN PERMISSION BEFORE EVER DELETING A FILE OR FOLDER OF ANY KIND.
- Absolutely forbidden commands:
git reset --hard,git clean -fd,rm -rf, or any command that can delete or overwrite code/data must never be run unless the user explicitly provides the exact command and states, in the same message, that they understand and want the irreversible consequences. - No guessing: If there is any uncertainty about what a command might delete or overwrite, stop immediately and ask the user for specific approval. "I think it's safe" is never acceptable.
- Safer alternatives first: When cleanup or rollbacks are needed, request permission to use non-destructive options (
git status,git diff,git stash, copying to backups) before ever considering a destructive command. - Mandatory explicit plan: Even after explicit user authorization, restate the command verbatim, list exactly what will be affected, and wait for a confirmation that your understanding is correct. Only then may you execute it—if anything remains ambiguous, refuse and escalate.
- Document the confirmation: When running any approved destructive command, record (in the session notes / final response) the exact user text that authorized it, the command actually run, and the execution time. If that record is absent, the operation did not happen.
The default branch is main. The master branch exists only for legacy URL compatibility.
- All work happens on
main— commits, PRs, feature branches all merge tomain - Never reference
masterin code or docs — if you seemasteranywhere, it's a bug that needs fixing - The
masterbranch must stay synchronized withmain— after pushing tomain, also push tomaster:git push origin main:master
If you see master referenced anywhere:
- Update it to
main - Ensure
masteris synchronized:git push origin main:master
We only use Cargo in this project, NEVER any other package manager.
- Edition: Rust 2024 (nightly required — see
rust-toolchain.toml) - Dependency versions: Explicit versions for stability; keep the set minimal
- Configuration: Cargo.toml workspace with members pattern
- Unsafe code: Denied by default (
#![deny(unsafe_code)]) — specific modules that require unsafe (e.g., epoll reactor FFI) can use#[allow(unsafe_code)]
This project IS the async runtime. Tokio and the entire tokio ecosystem are FORBIDDEN.
- Structured concurrency:
Cx,Scope,region()— no orphan tasks - Cancel-correct channels: Two-phase
reserve()/send()— no data loss on cancellation - Sync primitives:
asupersync::sync::Mutex,RwLock,OnceCell,Semaphore,Pool— cancel-aware - Deterministic testing:
LabRuntimewith virtual time, DPOR, oracles - Capability security: All effects flow through explicit
Cx; no ambient authority
Forbidden crates: tokio, hyper, reqwest, axum, tower (tokio adapter only — the tower feature flag exists for trait compat), async-std, smol, or any crate that transitively depends on tokio.
Pattern: All async functions take &Cx as first parameter. The Cx flows down through structured concurrency scopes.
- Prefer
std/coreand small, focused crates - Do not introduce another executor/runtime into core
- Any new crate must preserve determinism in the lab runtime and avoid ambient globals
- Phase 0: Dependencies added must preserve determinism in the lab runtime
| Crate | Purpose |
|---|---|
thiserror |
Ergonomic error type derivation |
crossbeam-queue |
Lock-free concurrent queues |
parking_lot |
Fast synchronization primitives |
polling |
Portable epoll/kqueue/IOCP polling |
slab |
Pre-allocated storage for fixed-size records |
smallvec |
Stack-allocated small vectors |
pin-project |
Safe pin projections |
serde + serde_json |
Serialization |
socket2 |
Low-level socket configuration |
rustls |
TLS support (optional, via tls feature) |
rusqlite |
SQLite async wrapper (optional, via sqlite feature) |
proptest |
Property-based testing (dev) |
criterion |
Benchmarking (dev) |
rayon |
Data parallelism for CPU-bound work (dev/bench only) |
| Crate | Purpose |
|---|---|
asupersync |
Main runtime crate — scheduler, regions, channels, sync, IO, net, HTTP |
asupersync-macros |
Proc macros for structured concurrency (scope!, spawn!, join!, race!) |
conformance |
Conformance test suite for async runtime specifications |
franken_kernel |
FrankenSuite type substrate (TraceId, DecisionId, PolicyId, SchemaVersion) |
franken_evidence |
Canonical EvidenceLedger schema for FrankenSuite decision tracing |
franken_decision |
Decision Contract schema and runtime for FrankenSuite |
frankenlab |
Deterministic testing harness: record, replay, and minimize concurrency bugs |
[features]
default = ["test-internals"]
test-internals = [...] # Internal test helpers (Cx::new(), etc.) — NOT for production
metrics = [...] # OpenTelemetry metrics provider
tracing-integration = [...] # Structured logging and spans (zero-cost when disabled)
proc-macros = [...] # scope!, spawn!, join!, race! macros
tower = [...] # Optional Tower adapter for AsupersyncService
trace-compression = [...] # LZ4 compression for trace files
debug-server = [] # Debug HTTP server for runtime inspection
config-file = [...] # TOML config file loading for RuntimeBuilder
lock-metrics = [] # ContendedMutex wait/hold time tracking
io-uring = [...] # Linux io_uring reactor (kernel 5.1+)
tls = [...] # TLS support via rustls
tls-native-roots = [...] # Native root certificates for TLS
tls-webpki-roots = [...] # webpki root certificates for TLS
cli = [...] # CLI tooling (trace inspection)
sqlite = [...] # SQLite async wrapper with blocking pool
postgres = [] # PostgreSQL async client with wire protocol
mysql = [] # MySQL async client with wire protocol
kafka = [...] # Kafka client integration via rdkafka
loom-tests = [...] # Loom concurrency tests for scheduler verificationUse the release profile defined in Cargo.toml. If you need to change it, justify the performance/size tradeoff and how it impacts determinism and cancellation behavior.
NEVER run a script that processes/changes code files in this repo. Brittle regex-based transformations create far more problems than they solve.
- Always make code changes manually, even when there are many instances
- For many simple changes: use parallel subagents
- For subtle/complex changes: do them methodically yourself
If you want to change something or add a feature, revise existing code files in place.
NEVER create variations like:
mainV2.rsmain_improved.rsmain_enhanced.rs
New files are reserved for genuinely new functionality that makes zero sense to include in any existing file. The bar for creating new files is incredibly high.
We do not care about backwards compatibility—we're in early development with no users. We want to do things the RIGHT way with NO TECH DEBT.
- Never create "compatibility shims"
- Never create wrapper functions for deprecated APIs
- Just fix the code directly
Asupersync is a library/runtime. Core code should not write to stdout/stderr.
- Use structured tracing via
Cx::trace(or equivalent) for observability. - Keep tests deterministic; avoid time-based logging outside the lab runtime.
- If a CLI is added, keep its output minimal, deterministic, and documented.
After any substantive code changes, you MUST verify no errors were introduced:
# Check for compiler errors and warnings
cargo check --all-targets
# Check for clippy lints (pedantic + nursery are enabled)
cargo clippy --all-targets -- -D warnings
# Verify formatting
cargo fmt --checkIf you see errors, carefully understand and resolve each issue. Read sufficient context to fix them the RIGHT way.
Every module includes inline #[cfg(test)] unit tests alongside the implementation. Tests must cover:
- Happy path
- Edge cases (empty input, max values, boundary conditions)
- Error conditions
When adding or changing primitives, add tests that assert the core invariants:
- No task leaks
- No obligation leaks
- Losers are drained after races
- Region close implies quiescence
Prefer deterministic lab-runtime tests for concurrency-sensitive behavior.
# Run all tests
cargo test
# Run with output
cargo test -- --nocapture
# Run tests for a specific module
cargo test --lib <module_name>
# Run tests for a workspace member
cargo test -p asupersync-macros
cargo test -p asupersync-conformance
cargo test -p franken-kernel
cargo test -p franken-evidence
cargo test -p franken-decision
cargo test -p frankenlab| Area | Focus |
|---|---|
types/ |
Identifiers, outcomes, budgets, policies, serialization round-trips |
record/ |
Task/region/obligation record creation, state transitions |
runtime/ |
Scheduler fairness, state management, region lifecycle |
cx/ |
Capability context, scope API, structured concurrency contracts |
channel/ |
Two-phase reserve/send, MPSC/oneshot, cancel-correctness |
sync/ |
Mutex, RwLock, Semaphore, Pool, Barrier, OnceLock — cancel-awareness |
combinator/ |
Join, race, timeout, bulkhead, retry — loser drain correctness |
cancel/ |
Cancellation protocol, symbol cancel, drain/finalize lifecycle |
obligation/ |
Permit/ack/lease commit/abort, no-leak invariant |
lab/ |
Virtual time, deterministic scheduling, DPOR, oracles |
net/ + io/ |
Async I/O adapters, socket integration |
http/ |
HTTP/1.1, HTTP/2 protocol correctness |
codec/ |
Framing, encoding/decoding round-trips |
conformance/ |
Cross-component conformance suite |
benches/ |
Scheduler, timer wheel, reactor, cancel/drain, RaptorQ throughput |
If you aren't 100% sure how to use a third-party library, SEARCH ONLINE to find the latest documentation and current best practices.
This is the project you're working on. Asupersync is a spec-first, cancel-correct, capability-secure async runtime for Rust with structured concurrency, explicit cancellation, and deterministic testing.
Provides a complete async runtime where every task is owned by a region that closes to quiescence. Cancellation is a first-class protocol (request, drain, finalize), not a silent drop. Effects require explicit capabilities flowing through Cx.
User Future → Scope/Region → Scheduler → Cancellation/Obligations → Trace
│ │ │ │ │
Cx ────────────┘──────────────┘───────────────┘────────────────────┘
- Structured concurrency: every task/fiber/actor is owned by exactly one region
- Region close = quiescence: no live children + all finalizers done
- Cancellation is a protocol: request → drain → finalize (idempotent)
- Losers are drained: races must cancel and fully drain losers
- No obligation leaks: permits/acks/leases must be committed or aborted
- No ambient authority: effects flow through
Cxand explicit capabilities
When acquiring multiple locks, the strict order is:
E(Config) → D(Instrumentation) → B(Regions) → A(Tasks) → C(Obligations)
Violating this order causes deadlocks. ShardedState with ContendedMutex provides independent locking.
asupersync/
├── Cargo.toml # Workspace root
├── src/ # Main runtime (~377K lines, 499 files)
│ ├── types/ # Core types (IDs, outcomes, budgets, policies)
│ ├── record/ # Internal records for tasks, regions, obligations
│ ├── runtime/ # Scheduler and runtime state management
│ ├── cx/ # Capability context and scope API
│ ├── channel/ # Two-phase channel primitives (MPSC, oneshot, sessions)
│ ├── sync/ # Sync primitives (mutex, rwlock, semaphore, pool, barrier)
│ ├── combinator/ # Join, race, timeout, bulkhead, retry
│ ├── cancel/ # Cancellation protocol and symbol cancellation
│ ├── obligation/ # Obligation tracking and recovery
│ ├── lab/ # Deterministic lab runtime with virtual time
│ ├── trace/ # Tracing infrastructure for deterministic replay
│ ├── time/ # Sleep and timeout primitives
│ ├── io/ # Async I/O traits and adapters
│ ├── net/ # Async networking primitives
│ ├── bytes/ # Zero-copy buffer types (Bytes, BytesMut, Buf, BufMut)
│ ├── codec/ # Encoding/decoding primitives and framing
│ ├── http/ # HTTP/1.1, HTTP/2 implementations
│ ├── tls/ # TLS support via rustls
│ ├── grpc/ # gRPC client/server with health checks
│ ├── database/ # SQLite, PostgreSQL, MySQL async wrappers
│ ├── transport/ # Low-level transport and routing
│ ├── stream/ # Stream combinators and operations
│ ├── plan/ # Plan DAG IR for combinator rewrites
│ ├── observability/ # Structured logging, metrics, diagnostics
│ ├── security/ # Symbol authentication and security
│ ├── distributed/ # Consistent hashing, distribution, snapshots
│ ├── raptorq/ # RaptorQ encoding pipeline
│ ├── util/ # Internal utilities (RNG, arenas)
│ ├── actor.rs # Actor model primitives
│ ├── supervision.rs # Supervision trees
│ ├── gen_server.rs # Generic server pattern
│ ├── config.rs # Runtime configuration
│ ├── error.rs # Error types
│ └── ... # ~30 additional single-file modules
├── asupersync-macros/ # Proc macros (scope!, spawn!, join!, race!)
├── conformance/ # Conformance test suite
├── franken_kernel/ # FrankenSuite type substrate
├── franken_evidence/ # FrankenSuite evidence ledger
├── franken_decision/ # FrankenSuite decision contracts
├── frankenlab/ # Deterministic testing harness
├── tests/ # Integration tests
├── benches/ # Performance benchmarks
├── examples/ # Usage examples
├── docs/ # Documentation
├── formal/ # Formal specifications
└── .beads/ # Beads issue tracking
| File | Purpose |
|---|---|
asupersync_plan_v4.md |
Design bible and core invariants |
asupersync_v4_formal_semantics.md |
Small-step operational semantics |
TESTING.md |
Comprehensive testing guide |
README.md |
Project overview |
| Type | Purpose |
|---|---|
Cx |
Capability context — passed to all async operations, no ambient authority |
Outcome<T, E> |
Four-valued result: Ok, Err, Cancelled, Panicked |
Budget |
Bounded cleanup time — sufficient conditions, not hopes |
Region |
Structured concurrency scope — owns tasks, closes to quiescence |
Scope |
API for creating child regions and spawning tasks |
TaskId / RegionId |
Identifiers for tasks and regions |
Obligation |
Tracked permit/ack/lease — must be committed or aborted |
CancelToken |
Cancellation signal propagation |
LabRuntime |
Deterministic runtime with virtual time for testing |
- Zero unnecessary allocations on the hot path (scheduling, cancel checks)
- Deterministic lab runtime: behavior must be schedule-replayable
- Cancellation and drain paths are latency-sensitive; avoid extra work there
- Lock ordering must be respected for deadlock freedom
#![deny(unsafe_code)]with per-module#[allow(unsafe_code)]where required (e.g.,pool.rsforunsafe impl Send)- Lock ordering enforcement with
ShardGuardvariants and label system (23 tests) - Channel waker dedup pattern:
Arc<AtomicBool>on mpscSendWaiter, broadcast, and watchWatchWaiter ShardedStatewithContendedMutexfor independent locking across task/region/obligation tables- Two-phase effects (reserve/commit) prevent data loss on cancellation
- FrankenSuite integration — evidence ledger, decision contracts, and kernel types for runtime verification
- Phase 0 complete, Phase 1 in progress — dead code allowances for stubs, core types stabilizing
A mail-like layer that lets coding agents coordinate asynchronously via MCP tools and resources. Provides identities, inbox/outbox, searchable threads, and advisory file reservations with human-auditable artifacts in Git.
- Prevents conflicts: Explicit file reservations (leases) for files/globs
- Token-efficient: Messages stored in per-project archive, not in context
- Quick reads:
resource://inbox/...,resource://thread/...
-
Register identity:
ensure_project(project_key=<abs-path>) register_agent(project_key, program, model) -
Reserve files before editing:
file_reservation_paths(project_key, agent_name, ["src/**"], ttl_seconds=3600, exclusive=true) -
Communicate with threads:
send_message(..., thread_id="FEAT-123") fetch_inbox(project_key, agent_name) acknowledge_message(project_key, agent_name, message_id) -
Quick reads:
resource://inbox/{Agent}?project=<abs-path>&limit=20 resource://thread/{id}?project=<abs-path>&include_bodies=true
- Prefer macros for speed:
macro_start_session,macro_prepare_thread,macro_file_reservation_cycle,macro_contact_handshake - Use granular tools for control:
register_agent,file_reservation_paths,send_message,fetch_inbox,acknowledge_message
"from_agent not registered": Alwaysregister_agentin the correctproject_keyfirst"FILE_RESERVATION_CONFLICT": Adjust patterns, wait for expiry, or use non-exclusive reservation- Auth errors: If JWT+JWKS enabled, include bearer token with matching
kid
Beads provides a lightweight, dependency-aware issue database and CLI (br - beads_rust) for selecting "ready work," setting priorities, and tracking status. It complements MCP Agent Mail's messaging and file reservations.
Important: br is non-invasive—it NEVER runs git commands automatically. You must manually commit changes after br sync --flush-only.
- Single source of truth: Beads for task status/priority/dependencies; Agent Mail for conversation and audit
- Shared identifiers: Use Beads issue ID (e.g.,
br-123) as Mailthread_idand prefix subjects with[br-123] - Reservations: When starting a task, call
file_reservation_paths()with the issue ID inreason
-
Pick ready work (Beads):
br ready --json # Choose highest priority, no blockers -
Reserve edit surface (Mail):
file_reservation_paths(project_key, agent_name, ["src/**"], ttl_seconds=3600, exclusive=true, reason="br-123") -
Announce start (Mail):
send_message(..., thread_id="br-123", subject="[br-123] Start: <title>", ack_required=true) -
Work and update: Reply in-thread with progress
-
Complete and release:
br close 123 --reason "Completed" br sync --flush-only # Export to JSONL (no git operations)
release_file_reservations(project_key, agent_name, paths=["src/**"])Final Mail reply:
[br-123] Completedwith summary
| Concept | Value |
|---|---|
Mail thread_id |
br-### |
| Mail subject | [br-###] ... |
File reservation reason |
br-### |
| Commit messages | Include br-### for traceability |
bv is a graph-aware triage engine for Beads projects (.beads/beads.jsonl). It computes PageRank, betweenness, critical path, cycles, HITS, eigenvector, and k-core metrics deterministically.
Scope boundary: bv handles what to work on (triage, priority, planning). For agent-to-agent coordination (messaging, work claiming, file reservations), use MCP Agent Mail.
CRITICAL: Use ONLY --robot-* flags. Bare bv launches an interactive TUI that blocks your session.
bv --robot-triage is your single entry point. It returns:
quick_ref: at-a-glance counts + top 3 picksrecommendations: ranked actionable items with scores, reasons, unblock infoquick_wins: low-effort high-impact itemsblockers_to_clear: items that unblock the most downstream workproject_health: status/type/priority distributions, graph metricscommands: copy-paste shell commands for next steps
bv --robot-triage # THE MEGA-COMMAND: start here
bv --robot-next # Minimal: just the single top pick + claim commandPlanning:
| Command | Returns |
|---|---|
--robot-plan |
Parallel execution tracks with unblocks lists |
--robot-priority |
Priority misalignment detection with confidence |
Graph Analysis:
| Command | Returns |
|---|---|
--robot-insights |
Full metrics: PageRank, betweenness, HITS, eigenvector, critical path, cycles, k-core, articulation points, slack |
--robot-label-health |
Per-label health: health_level, velocity_score, staleness, blocked_count |
--robot-label-flow |
Cross-label dependency: flow_matrix, dependencies, bottleneck_labels |
--robot-label-attention [--attention-limit=N] |
Attention-ranked labels |
History & Change Tracking:
| Command | Returns |
|---|---|
--robot-history |
Bead-to-commit correlations |
--robot-diff --diff-since <ref> |
Changes since ref: new/closed/modified issues, cycles |
Other:
| Command | Returns |
|---|---|
--robot-burndown <sprint> |
Sprint burndown, scope changes, at-risk items |
--robot-forecast <id|all> |
ETA predictions with dependency-aware scheduling |
--robot-alerts |
Stale issues, blocking cascades, priority mismatches |
--robot-suggest |
Hygiene: duplicates, missing deps, label suggestions |
--robot-graph [--graph-format=json|dot|mermaid] |
Dependency graph export |
--export-graph <file.html> |
Interactive HTML visualization |
bv --robot-plan --label backend # Scope to label's subgraph
bv --robot-insights --as-of HEAD~30 # Historical point-in-time
bv --recipe actionable --robot-plan # Pre-filter: ready to work
bv --recipe high-impact --robot-triage # Pre-filter: top PageRank
bv --robot-triage --robot-triage-by-track # Group by parallel work streams
bv --robot-triage --robot-triage-by-label # Group by domainAll robot JSON includes:
data_hash— Fingerprint of source beads.jsonlstatus— Per-metric state:computed|approx|timeout|skipped+ elapsed msas_of/as_of_commit— Present when using--as-of
Two-phase analysis:
- Phase 1 (instant): degree, topo sort, density
- Phase 2 (async, 500ms timeout): PageRank, betweenness, HITS, eigenvector, cycles
bv --robot-triage | jq '.quick_ref' # At-a-glance summary
bv --robot-triage | jq '.recommendations[0]' # Top recommendation
bv --robot-plan | jq '.plan.summary.highest_impact' # Best unblock target
bv --robot-insights | jq '.status' # Check metric readiness
bv --robot-insights | jq '.Cycles' # Circular deps (must fix!)Golden Rule: ubs <changed-files> before every commit. Exit 0 = safe. Exit >0 = fix & re-run.
ubs file.rs file2.rs # Specific files (< 1s) — USE THIS
ubs $(git diff --name-only --cached) # Staged files — before commit
ubs --only=rust,toml src/ # Language filter (3-5x faster)
ubs --ci --fail-on-warning . # CI mode — before PR
ubs . # Whole project (ignores target/, Cargo.lock)⚠️ Category (N errors)
file.rs:42:5 – Issue description
💡 Suggested fix
Exit code: 1
Parse: file:line:col → location | 💡 → how to fix | Exit 0/1 → pass/fail
- Read finding → category + fix suggestion
- Navigate
file:line:col→ view context - Verify real issue (not false positive)
- Fix root cause (not symptom)
- Re-run
ubs <file>→ exit 0 - Commit
- Critical (always fix): Memory safety, use-after-free, data races, SQL injection
- Important (production): Unwrap panics, resource leaks, overflow checks
- Contextual (judgment): TODO/FIXME, println! debugging
RCH offloads cargo build, cargo test, cargo clippy, and other compilation commands to a fleet of 8 remote Contabo VPS workers instead of building locally. This prevents compilation storms from overwhelming csd when many agents run simultaneously.
RCH is installed at ~/.local/bin/rch and is hooked into Claude Code's PreToolUse automatically. Most of the time you don't need to do anything if you are Claude Code — builds are intercepted and offloaded transparently.
To manually offload a build:
rch exec -- cargo build --release
rch exec -- cargo test
rch exec -- cargo clippyQuick commands:
rch doctor # Health check
rch workers probe --all # Test connectivity to all 8 workers
rch status # Overview of current state
rch queue # See active/waiting buildsIf rch or its workers are unavailable, it fails open — builds run locally as normal.
Note for Codex/GPT-5.2: Codex does not have the automatic PreToolUse hook, but you can (and should) still manually offload compute-intensive compilation commands using rch exec -- <command>. This avoids local resource contention when multiple agents are building simultaneously.
Use ast-grep when structure matters. It parses code and matches AST nodes, ignoring comments/strings, and can safely rewrite code.
- Refactors/codemods: rename APIs, change import forms
- Policy checks: enforce patterns across a repo
- Editor/automation: LSP mode,
--jsonoutput
Use ripgrep when text is enough. Fastest way to grep literals/regex.
- Recon: find strings, TODOs, log lines, config values
- Pre-filter: narrow candidate files before ast-grep
- Need correctness or applying changes →
ast-grep - Need raw speed or hunting text →
rg - Often combine:
rgto shortlist files, thenast-grepto match/modify
# Find structured code (ignores comments)
ast-grep run -l Rust -p 'fn $NAME($$ARGS) -> $RET { $$BODY }'
# Find all unwrap() calls
ast-grep run -l Rust -p '$EXPR.unwrap()'
# Quick textual hunt
rg -n 'println!' -t rust
# Combine speed + precision
rg -l -t rust 'unwrap\(' | xargs ast-grep run -l Rust -p '$X.unwrap()' --jsonUse mcp__morph-mcp__warp_grep for exploratory "how does X work?" questions. An AI agent expands your query, greps the codebase, reads relevant files, and returns precise line ranges with full context.
Use ripgrep for targeted searches. When you know exactly what you're looking for.
Use ast-grep for structural patterns. When you need AST precision for matching/rewriting.
| Scenario | Tool | Why |
|---|---|---|
| "How does the cancellation protocol work?" | warp_grep |
Exploratory; don't know where to start |
| "Where is the region close logic?" | warp_grep |
Need to understand architecture |
"Find all uses of Cx::trace" |
ripgrep |
Targeted literal search |
"Find files with println!" |
ripgrep |
Simple pattern |
"Replace all unwrap() with expect()" |
ast-grep |
Structural refactor |
mcp__morph-mcp__warp_grep(
repoPath: "/data/projects/asupersync",
query: "How does the structured concurrency scope API work?"
)
Returns structured results with file paths, line ranges, and extracted code snippets.
- Don't use
warp_grepto find a specific function name → useripgrep - Don't use
ripgrepto understand "how does X work" → wastes time with manual reads - Don't use
ripgrepfor codemods → risks collateral edits
This project uses beads_rust (br) for issue tracking. Issues are stored in .beads/ and tracked in git.
Important: br is non-invasive—it NEVER executes git commands. After br sync --flush-only, you must manually run git add .beads/ && git commit.
# View issues (launches TUI - avoid in automated sessions)
bv
# CLI commands for agents (use these instead)
br ready # Show issues ready to work (no blockers)
br list --status=open # All open issues
br show <id> # Full issue details with dependencies
br create --title="..." --type=task --priority=2
br update <id> --status=in_progress
br close <id> --reason "Completed"
br close <id1> <id2> # Close multiple issues at once
br sync --flush-only # Export to JSONL (NO git operations)- Start: Run
br readyto find actionable work - Claim: Use
br update <id> --status=in_progress - Work: Implement the task
- Complete: Use
br close <id> - Sync: Run
br sync --flush-onlythen manually commit
- Dependencies: Issues can block other issues.
br readyshows only unblocked work. - Priority: P0=critical, P1=high, P2=medium, P3=low, P4=backlog (use numbers, not words)
- Types: task, bug, feature, epic, question, docs
- Blocking:
br dep add <issue> <depends-on>to add dependencies
Before ending any session, run this checklist:
git status # Check what changed
git add <files> # Stage code changes
br sync --flush-only # Export beads to JSONL
git add .beads/ # Stage beads changes
git commit -m "..." # Commit everything together
git push # Push to remote- Check
br readyat session start to find available work - Update status as you work (in_progress → closed)
- Create new issues with
br createwhen you discover tasks - Use descriptive titles and set appropriate priority/type
- Always
br sync --flush-only && git add .beads/before ending session
When ending a work session, you MUST complete ALL steps below.
MANDATORY WORKFLOW:
- File issues for remaining work - Create issues for anything that needs follow-up
- Run quality gates (if code changed) - Tests, linters, builds
- Update issue status - Close finished work, update in-progress items
- Sync beads -
br sync --flush-onlyto export to JSONL - Hand off - Provide context for next session
cass indexes prior agent conversations (Claude Code, Codex, Cursor, Gemini, ChatGPT, etc.) so we can reuse solved problems.
Rules: Never run bare cass (TUI). Always use --robot or --json.
cass health
cass search "async runtime" --robot --limit 5
cass view /path/to/session.jsonl -n 42 --json
cass expand /path/to/session.jsonl -n 42 -C 3 --json
cass capabilities --json
cass robot-docs guide- Use
--fields minimalfor lean output - Filter by agent with
--agent - Use
--days Nto limit to recent history
stdout is data-only, stderr is diagnostics; exit code 0 means success.
Treat cass as a way to avoid re-solving problems other agents already handled.
Note for Codex/GPT-5.2:
You constantly bother me and stop working with concerned questions that look similar to this:
Unexpected changes (need guidance)
- Working tree still shows edits I did not make in Cargo.toml, Cargo.lock, src/runtime.rs, src/scope.rs. Please advise whether to keep/commit/revert these before any further work. I did not touch them.
Next steps (pick one)
1. Decide how to handle the unrelated modified files above so we can resume cleanly.
NEVER EVER DO THAT AGAIN. The answer is literally ALWAYS the same: those are changes created by the potentially dozen of other agents working on the project at the same time. This is not only a common occurence, it happens multiple times PER MINUTE. The way to deal with it is simple: you NEVER, under ANY CIRCUMSTANCE, stash, revert, overwrite, or otherwise disturb in ANY way the work of other agents. Just treat those changes identically to changes that you yourself made. Just fool yourself into thinking YOU made the changes and simply don't recall it for some reason.
Also, if I ask you to explicitly use your built-in TODO functionality, don't complain about this and say you need to use beads. You can use built-in TODOs if I tell you specifically to do so. Always comply with such orders.