@rely-ai/caliber 1.37.0-dev.1774891449 → 1.37.0-dev.1774893051
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Caliber
|
|
2
2
|
|
|
3
|
-
**Hand-written `CLAUDE.md` files go stale the moment you refactor.** Your AI agent hallucinates paths that no longer exist, misses new dependencies, and gives advice based on yesterday's architecture. Caliber generates and maintains your AI context files (`CLAUDE.md`, `.cursor/rules/`, `AGENTS.md`) so they stay accurate as your code evolves — and keeps every agent on your team in sync, whether they use Claude Code, Cursor, Codex, or
|
|
3
|
+
**Hand-written `CLAUDE.md` files go stale the moment you refactor.** Your AI agent hallucinates paths that no longer exist, misses new dependencies, and gives advice based on yesterday's architecture. Caliber generates and maintains your AI context files (`CLAUDE.md`, `.cursor/rules/`, `AGENTS.md`, `copilot-instructions.md`) so they stay accurate as your code evolves — and keeps every agent on your team in sync, whether they use Claude Code, Cursor, Codex, OpenCode, or GitHub Copilot.
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<img src="assets/demo-header.gif" alt="Caliber product demo" width="900">
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
<img src="https://img.shields.io/badge/Cursor-supported-blue" alt="Cursor">
|
|
16
16
|
<img src="https://img.shields.io/badge/Codex-supported-blue" alt="Codex">
|
|
17
17
|
<img src="https://img.shields.io/badge/OpenCode-supported-blue" alt="OpenCode">
|
|
18
|
+
<img src="https://img.shields.io/badge/GitHub_Copilot-supported-blue" alt="GitHub Copilot">
|
|
18
19
|
</p>
|
|
19
20
|
|
|
20
21
|
## Before / After
|
|
@@ -119,6 +120,9 @@ Pre-commit hooks run the refresh loop automatically. New team members get nudged
|
|
|
119
120
|
- `AGENTS.md` — Project context (shared with Codex when both are targeted)
|
|
120
121
|
- `.opencode/skills/*/SKILL.md` — Skills for OpenCode
|
|
121
122
|
|
|
123
|
+
**GitHub Copilot**
|
|
124
|
+
- `.github/copilot-instructions.md` — Project context for Copilot
|
|
125
|
+
|
|
122
126
|
## Key Features
|
|
123
127
|
|
|
124
128
|
<details>
|
|
@@ -136,9 +140,10 @@ TypeScript, Python, Go, Rust, Java, Ruby, Terraform, and more. Language and fram
|
|
|
136
140
|
caliber init --agent claude # Claude Code only
|
|
137
141
|
caliber init --agent cursor # Cursor only
|
|
138
142
|
caliber init --agent codex # Codex only
|
|
139
|
-
caliber init --agent opencode
|
|
140
|
-
caliber init --agent
|
|
141
|
-
caliber init --agent
|
|
143
|
+
caliber init --agent opencode # OpenCode only
|
|
144
|
+
caliber init --agent github-copilot # GitHub Copilot only
|
|
145
|
+
caliber init --agent all # All platforms
|
|
146
|
+
caliber init --agent claude,cursor # Comma-separated
|
|
142
147
|
```
|
|
143
148
|
|
|
144
149
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "1.37.0-dev.
|
|
3
|
+
"version": "1.37.0-dev.1774893051",
|
|
4
4
|
"description": "AI context infrastructure for coding agents — keeps CLAUDE.md, Cursor rules, and skills in sync as your codebase evolves",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|