settings

Solid

Configure agent settings — memory backend (builtin/QMD), search mode, temporal decay, citations. Triggers on /agent:settings, "configurar agente", "agent settings", "memory settings", "setup QMD", "configurar QMD", "configurar memoria".

AI & Automation 61 stars 14 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
60
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Agent Settings View and modify the agent's configuration stored in `agent-config.json`. ## Show current settings If no argument given, read and display `agent-config.json`: ```bash cat ${CLAUDE_PLUGIN_ROOT}/agent-config.json 2>/dev/null || echo '(no config — using defaults)' ``` Show defaults: - Memory backend: **builtin** (SQLite + FTS5 + BM25 + temporal decay + MMR) - Citations: **auto** - Temporal decay: **enabled** (half-life 30 days) - MMR: **enabled** (lambda 0.7) - Heartbeat: **every 30 min**, active hours 08:00-23:00 - Dreaming: **nightly at 3 AM** ## Available settings ### Memory backend: `builtin` or `qmd` **builtin** (default): - SQLite + FTS5 full-text search with BM25 ranking - Temporal decay for dated files (older = less relevant) - MMR diversity re-ranking - Works out of the box, no external tools needed **qmd** (enhanced): - External tool by @tobi: https://github.com/tobi/qmd - Local embeddings via node-llama-cpp (no API keys needed) - Vector search with semantic understanding - Reranking for better result quality - Requires `qmd` binary installed ### Setting up QMD 1. **Check if qmd is installed:** ```bash qmd --version 2>/dev/null && echo "QMD available" || echo "QMD not found" ``` 2. **If not installed, guide the user:** ``` Install QMD (local-first search tool, no API keys needed): bun install -g qmd # or download from https://github.com/tobi/qmd/releases ``` 3. **Configure the backend:** Write `agent-config.js...

Details

Author
crisandrews
Repository
crisandrews/ClawCode
Created
3 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category