Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ The full project proposal will be added at `docs/PROPOSAL-plotlink.md` in a futu

## Versioning

Version is tracked in `package.json` and displayed in the footer. All agents must follow these rules:
Version format: X.Y.Z (e.g., 1.0.0, 1.11.23). Each digit can go beyond 9.

| Digit | Meaning | Who can bump |
|-------|---------|-------------|
| **3rd** (patch) | Bug fixes, minor updates | T3 autonomously |
| **2nd** (minor) | Feature additions, major updates | **Operator (T1) permission required** |
| **1st** (major) | Pivot-level changes | **Operator (T1) permission required** |
| 3rd (Z) | Minor updates, bug fixes | T3 autonomously |
| 2nd (Y) | Major updates, new features | T3 autonomously |
| 1st (X) | Operator (T1) permission only | Never bump without asking |

When making a PR, bump the patch version in `package.json` for bug fixes. For feature work, note in the PR that a minor version bump may be needed and let T1 decide.
When making a PR, bump the 3rd digit for bug fixes, the 2nd digit for feature work. Never bump the 1st digit without explicit T1 approval.

## Environment Variables

Expand Down
99 changes: 66 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink",
"version": "0.1.54",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
Expand Down
Loading