@rely-ai/caliber 0.1.0 → 0.1.1
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 +16 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ If you already have these files, Caliber audits them against your actual codebas
|
|
|
39
39
|
| `caliber update` | Re-analyze and regenerate (alias: `regenerate`, `regen`) |
|
|
40
40
|
| `caliber config` | Configure LLM provider, API key, and model |
|
|
41
41
|
| `caliber refresh` | Update docs based on recent git changes |
|
|
42
|
-
| `caliber score` | Score your config quality (deterministic, no LLM) |
|
|
42
|
+
| `caliber score` | Score your config quality (deterministic, no LLM). Supports `--agent claude\|cursor\|both` |
|
|
43
43
|
| `caliber recommend` | Discover skills from [skills.sh](https://skills.sh) |
|
|
44
44
|
| `caliber undo` | Revert all changes made by Caliber |
|
|
45
45
|
| `caliber status` | Show current setup status |
|
|
@@ -91,7 +91,21 @@ caliber init
|
|
|
91
91
|
1. **Scan** — Analyzes your code, dependencies, file structure, and existing agent configs
|
|
92
92
|
2. **Generate** — LLM creates config files tailored to your project
|
|
93
93
|
3. **Review** — You accept, refine via chat, or decline the proposed changes
|
|
94
|
-
4. **Apply** — Config files are written to your project with backups
|
|
94
|
+
4. **Apply** — Config files are written to your project with backups, and a before/after score is displayed
|
|
95
|
+
|
|
96
|
+
Caliber also auto-generates `AGENTS.md` and configures `.claude/settings.json` permissions during init.
|
|
97
|
+
|
|
98
|
+
### Scoring
|
|
99
|
+
|
|
100
|
+
Caliber includes a deterministic scoring system (no LLM needed) that evaluates your agent config across 6 categories: existence, quality, coverage, accuracy, freshness, and bonus. Scoring is target-aware — it only checks what's relevant to your chosen platform:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
caliber score # Auto-detect target from existing files
|
|
104
|
+
caliber score --agent claude # Score for Claude Code only
|
|
105
|
+
caliber score --agent both # Score for Claude Code + Cursor
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
During `caliber init`, a before/after score is displayed so you can see the improvement.
|
|
95
109
|
|
|
96
110
|
### Auto-refresh
|
|
97
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Open-source CLI for configuring coding agent environments (CLAUDE.md, .cursorrules, skills). Bring your own LLM.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"LICENSE"
|
|
33
33
|
],
|
|
34
34
|
"license": "MIT",
|
|
35
|
-
"author": "
|
|
35
|
+
"author": "Rely AI",
|
|
36
36
|
"keywords": [
|
|
37
37
|
"caliber",
|
|
38
38
|
"cli",
|