Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Administrative operations on the Knowledge base: connect new pgvector servers, check health, view stats, export data, install parser models. Use when the user wants to configure/monitor the system ('connect a new pgvector', 'status of connections', 'how many docs do we have', 'export backup of space X', 'install Marker models').
.claude/skills/evolution-foundation-knowledge-admin/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 37% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 1% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 105% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 32% | 0% |
Group: Administration. Consolidates connect/health/stats/export/install-parser via subcommand.
| Name | Type | Required | Description | |---|---|---|---| | action | str | yes | connect \| health \| stats \| export \| install-parser | | (action-specific args) | | | see below |
connect — New connection wizardOptional args: slug, name, host, port, database, username, password, ssl_mode, connection_string.
Flow:
POST /api/knowledge/connections — register (encryption via workspace key)POST /api/knowledge/connections/:id/configure — runs:SELECT version() (Postgres >= 14)pgvector >= 0.5knowledge_configknowledge-organize action=create")healthpythonfrom dashboard.backend.sdk_client import evo conns = evo.get("/api/knowledge/connections") for c in conns: health = evo.get(f"/api/knowledge/connections/{c['id']}/health") # aggregate: status, schema_version, pgvector_version, chunks, spaces, last_error
Output:
| Connection | Status | Schema | pgvector | Spaces | Chunks | Last health |
|---|---|---|---|---|---|---|
| academy | ✅ ready | v3 | 0.5.1 | 5 | 12,400 | 2026-04-20 14:05 |
| acme | ⚠️ needs_mig | v2 | 0.5.0 | 2 | 3,100 | 2026-04-20 14:05 |
| staging | ❌ error | — | — | — | — | `connection refused` |statsAggregates per-connection + global stats:
pythonstats = evo.get("/api/knowledge/stats") # { connections: [...], total_documents: N, total_chunks: M, by_content_type: {...}, growth_7d: X }
Output:
## Knowledge stats
Total documents: {N}
Total chunks: {M}
Total spaces: {S}
Growth (last 7d): +{X} docs, +{Y} chunks
### By content_type
- lesson: {N}
- tutorial: {N}
- faq: {N}
...
### Per connection
| Connection | Docs | Chunks | Spaces |
...exportArgs: space_id (yes), format (default "jsonl"), connection.
pythondocs = evo.get( "/api/knowledge/v1/documents", params={"space_id": space_id, "format": "jsonl", "include_chunks": True}, headers={"X-Knowledge-Connection": connection}, ) # Save to workspace/data/knowledge-exports/{connection}_{space_slug}_{timestamp}.jsonl from pathlib import Path import json from datetime import datetime out = Path("workspace/data/knowledge-exports") / \ f"{connection}_{space_id}_{datetime.now():%Y%m%d_%H%M%S}.jsonl" out.parent.mkdir(parents=True, exist_ok=True) with out.open("w") as f: for doc in docs: f.write(json.dumps(doc, ensure_ascii=False) + "\n") print(f"Exported {len(docs)} docs to {out}")
install-parserDownloads Marker models (Surya OCR ~500MB). Idempotent — uses sentinel file.
pythonresp = evo.post("/api/knowledge/parsers/install", {}) # poll /api/knowledge/parsers/status until installed=true
Show progress. If already installed, no-op.
action → list actionsworkspace/data/knowledge-exports/ manually"| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 11,068 | 8,981 | -19% | 1 | 1 | 0% | 1,837 | 2,524 | +37% | 0 | 0 | — |
case-02 | fail→pass | 16,860 | 14,533 | -14% | 1 | 1 | 0% | 2,297 | 2,327 | +1% | 0 | 0 | — |
case-03 | fail→pass | 10,715 | 4,199 | -61% | 1 | 1 | 0% | 1,794 | 1,901 | +6% | 0 | 0 | — |
case-04 | fail→pass | 6,370 | 6,636 | +4% | 1 | 1 | 0% | 1,112 | 2,275 | +105% | 0 | 0 | — |
case-05 | fail→pass | 8,765 | 5,429 | -38% | 1 | 1 | 0% | 1,548 | 2,037 | +32% | 0 | 0 | — |
case-06 | fail→pass | 12,147 | 5,685 | -53% | 1 | 1 | 0% | 2,318 | 2,195 | -5% | 0 | 0 | — |
case-07 | fail→fail | 13,808 | 1,864 | -87% | 1 | 1 | 0% | 2,369 | 1,464 | -38% | 0 | 0 | — |
case-08 | fail→pass | 14,057 | 4,213 | -70% | 1 | 1 | 0% | 2,276 | 1,962 | -14% | 0 | 0 | — |
case-09 | fail→pass | 13,276 | 3,135 | -76% | 1 | 1 | 0% | 1,380 | 1,791 | +30% | 0 | 0 | — |
case-10 | pass→pass | 6,514 | 2,781 | -57% | 1 | 1 | 0% | 1,245 | 1,671 | +34% | 0 | 0 | — |
case-11 | fail→pass | 8,396 | 2,164 | -74% | 1 | 1 | 0% | 1,377 | 1,502 | +9% | 0 | 0 | — |
case-12 | fail→pass | 10,771 | 2,958 | -73% | 1 | 1 | 0% | 1,645 | 1,686 | +2% | 0 | 0 | — |
case-13 | pass→pass | 6,437 | 2,504 | -61% | 1 | 1 | 0% | 1,191 | 1,610 | +35% | 0 | 0 | — |
case-14 | fail→fail | 9,984 | 3,803 | -62% | 1 | 1 | 0% | 1,694 | 1,863 | +10% | 0 | 0 | — |
case-15 | pass→pass | 3,071 | 1,034 | -66% | 1 | 1 | 0% | 579 | 1,371 | +137% | 0 | 0 | — |
case-16 | fail→pass | 11,998 | 2,895 | -76% | 1 | 1 | 0% | 1,995 | 1,648 | -17% | 0 | 0 | — |
case-17 | fail→fail | 8,123 | 1,746 | -79% | 1 | 1 | 0% | 1,402 | 1,419 | +1% | 0 | 0 | — |
case-18 | fail→pass | 8,799 | 1,604 | -82% | 1 | 1 | 0% | 1,552 | 1,463 | -6% | 0 | 0 | — |
case-19 | fail→pass | 10,207 | 1,154 | -89% | 1 | 1 | 0% | 1,546 | 1,336 | -14% | 0 | 0 | — |
case-20 | pass→pass | 7,617 | 3,276 | -57% | 1 | 1 | 0% | 1,306 | 1,762 | +35% | 0 | 0 | — |
case-21 | pass→pass | 8,252 | 6,644 | -19% | 1 | 1 | 0% | 1,599 | 2,345 | +47% | 0 | 0 | — |
case-22 | pass→pass | 8,597 | 7,529 | -12% | 1 | 1 | 0% | 1,657 | 2,533 | +53% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +59 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.