Skip to content
Open
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
66d62a8
Add CLAUDE.md for Claude Code guidance
whoabuddy Jan 1, 2026
49785ba
Add draft SIP-XXX: Standard Trait Definition for Agent Registries
whoabuddy Jan 1, 2026
9b773bc
Update SIP-XXX format to match SIP-034 and SIP-000 conventions
whoabuddy Jan 1, 2026
ea82c1c
Remove block deadline from SIP-XXX activation criteria
whoabuddy Jan 1, 2026
c0b74eb
feat: add use cases and ERC-8004 Solidity reference
whoabuddy Feb 6, 2026
575c6c7
docs(sip-xxx): update Abstract to reflect v2.0.0 features
whoabuddy Feb 6, 2026
31b10c9
feat(sip-xxx): rewrite Identity Registry specification for v2.0.0
whoabuddy Feb 6, 2026
8628ed6
feat(reputation): rewrite Reputation Registry spec for v2.0.0
whoabuddy Feb 6, 2026
4a36a87
feat(sip-xxx): update validation registry to v2.0.0 spec
whoabuddy Feb 6, 2026
70311ab
docs(sip-xxx): update cross-cutting sections for v2.0.0
whoabuddy Feb 6, 2026
91071a8
docs(sip-xxx): add authorization model and security considerations
whoabuddy Feb 6, 2026
100dea5
docs(sip-XXX): update Related Work with v2.0.0 cross-chain implementa…
whoabuddy Feb 6, 2026
2169178
docs(sip-XXX): review and confirm Activation criteria for v2.0.0
whoabuddy Feb 6, 2026
f145a0e
docs(sip-XXX): update Reference Implementation links and verify testn…
whoabuddy Feb 6, 2026
cfbbd7d
docs(sip-XXX): add SIP-009 to References section
whoabuddy Feb 6, 2026
5fed944
docs(sip-XXX): final version sweep for v2.0.0 consistency
whoabuddy Feb 6, 2026
0b0ff39
docs(sip-XXX): update Identity Registry trait to match v2 contracts
whoabuddy Feb 7, 2026
d9ebc07
docs(sip-XXX): update Reputation Registry trait to match v2 contracts
whoabuddy Feb 7, 2026
20be691
docs(sip-XXX): update Validation Registry trait to match v2 contracts
whoabuddy Feb 7, 2026
e56d730
docs(sip-XXX): update reputation registry read-only functions to matc…
whoabuddy Feb 7, 2026
7cdf442
docs(sip-XXX): update validation registry read-only functions to matc…
whoabuddy Feb 7, 2026
a4853d8
docs(sip-XXX): update testnet addresses to v2 contracts
whoabuddy Feb 7, 2026
aa83306
docs(sip-XXX): add mainnet deployment addresses and update CAIP-2 exa…
whoabuddy Feb 11, 2026
8e6fc95
Accept SIP-041
whoabuddy Feb 12, 2026
c636cda
docs(sip-041): rename from sip-XXX to sip-041 and add PR link
whoabuddy Feb 12, 2026
c841dec
chore: remove .gitignore and CLAUDE.md changes from PR
whoabuddy Feb 12, 2026
be02aff
docs(sip-041): fix tx-sender vs contract-caller documentation
whoabuddy Feb 12, 2026
c6c718f
docs(sip-041): trim redundant content for conciseness
whoabuddy Feb 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
*.rej

.aider*
.planning/
58 changes: 58 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

## Repository Overview

This is the Stacks Improvement Proposals (SIPs) repository - a governance documentation repository for the Stacks blockchain. It contains proposals for changes to the blockchain's design, implementation, operation, and governance.

**This is NOT a code repository.** It is a collection of markdown documents following a formal proposal and ratification process.

## Repository Structure

- `sips/` - Contains all SIP documents organized by number (e.g., `sip-000/`, `sip-001/`)
- `considerations/` - Contains Consideration Advisory Board (CAB) information and meeting minutes
- `sips/SIP_TEMPLATE.md` - Template for new SIP submissions

## SIP Document Format

All SIPs are markdown files with required sections in order:
1. **Preamble** - Metadata fields (SIP Number, Title, Author, Consideration, Type, Status, Created, License, Sign-off)
2. **Abstract** - High-level summary (max 5000 words)
3. **Copyright** - License information
4. **Introduction** - Problem description and proposed solution
5. **Specification** - Detailed technical specification
6. **Related Work** - Alternative solutions and bibliography
7. **Backwards Compatibility** - Breaking changes and mitigations
8. **Activation** - Timeline, criteria, and process for activation
9. **Reference Implementation** - Links to implementations

## SIP Types

- **Consensus** - Requires all implementations to adopt (hard/soft fork)
- **Standard** - Affects implementations but not consensus
- **Operation** - Concerns node operators and miners
- **Meta** - Changes to the SIP process itself
- **Informational** - Provides information without requiring action

## SIP Considerations (Review Tracks)

- **Technical** - Technical expertise review
- **Economic** - Token economics, fundraising, grants
- **Governance** - SIP process and committee structure
- **Ethics** - Behavioral standards for office-holders
- **Diversity** - User growth and outreach

## SIP Workflow

Draft → Accepted → Recommended → Activation-In-Progress → Ratified

SIPs can also be: Rejected, Obsolete, Replaced, or Withdrawn

## Working with SIPs

When creating or editing SIPs:
- Follow the template in `sips/SIP_TEMPLATE.md`
- Place SIP files in `sips/sip-XXX/sip-XXX-title.md`
- Supplementary materials go in the same directory as `SIP-XXXX-YYY.ext`
- Use approved licenses: BSD-2-Clause, BSD-3-Clause, CC0-1.0, GNU-All-Permissive, GPL-2.0+, LGPL-2.1+
Loading