@rely-ai/caliber 1.15.0 → 1.15.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 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,28 +151,30 @@ caliber undo # Revert everything
|
|
|
151
151
|
|
|
152
152
|
## 📊 Scoring
|
|
153
153
|
|
|
154
|
-
`caliber score` gives you a deterministic quality score
|
|
154
|
+
`caliber score` gives you a deterministic, tech-stack-agnostic quality score. No LLM needed — it cross-references your config files against the actual project filesystem.
|
|
155
155
|
|
|
156
156
|
```
|
|
157
|
-
Config Score
|
|
158
|
-
|
|
159
|
-
FILES & SETUP
|
|
160
|
-
QUALITY
|
|
161
|
-
|
|
162
|
-
ACCURACY
|
|
163
|
-
FRESHNESS & SAFETY
|
|
164
|
-
BONUS
|
|
157
|
+
Agent Config Score 88 / 100 Grade A
|
|
158
|
+
|
|
159
|
+
FILES & SETUP 17 / 17
|
|
160
|
+
QUALITY 21 / 23
|
|
161
|
+
GROUNDING 20 / 20
|
|
162
|
+
ACCURACY 10 / 15
|
|
163
|
+
FRESHNESS & SAFETY 10 / 10
|
|
164
|
+
BONUS 5 / 5
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
| Category | Points | What it checks |
|
|
168
168
|
| ---------------------- | ------ | ------------------------------------------------------------------ |
|
|
169
|
-
| **Files & Setup** | 25 | Config files exist, skills present, cross-platform parity
|
|
170
|
-
| **Quality** | 25 | Has
|
|
171
|
-
| **
|
|
172
|
-
| **Accuracy** | 15 |
|
|
173
|
-
| **Freshness & Safety** | 10 | Recently updated, no leaked secrets, permissions
|
|
169
|
+
| **Files & Setup** | 25 | Config files exist, skills present, MCP servers, cross-platform parity |
|
|
170
|
+
| **Quality** | 25 | Has code blocks, concise token budget, concrete instructions, structured headings |
|
|
171
|
+
| **Grounding** | 20 | Config references actual project directories and files |
|
|
172
|
+
| **Accuracy** | 15 | Referenced paths exist on disk, config is in sync with code (git-based) |
|
|
173
|
+
| **Freshness & Safety** | 10 | Recently updated, no leaked secrets, permissions configured |
|
|
174
174
|
| **Bonus** | 5 | Auto-refresh hooks, AGENTS.md, OpenSkills format |
|
|
175
175
|
|
|
176
|
+
Every failing check includes structured fix data — when `caliber init` runs, the LLM receives exactly what's wrong and how to fix it.
|
|
177
|
+
|
|
176
178
|
## 🧩 Skills
|
|
177
179
|
|
|
178
180
|
Caliber searches three community registries and scores results against your project
|
package/package.json
CHANGED