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 62 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
5 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

AI & Automation Solid

agent-memory

Persistent memory across coding sessions — long-term facts, daily logs, topic notes, scratchpad checklist, and semantic search.

21 Updated today
jayzeng
AI & Automation Listed

memory-engineering

Use when an agent's memory needs to be built, audited, or maintained — the user asks to set up a memory system, complains the agent keeps forgetting or repeating mistakes, says the instruction file (CLAUDE.md/AGENTS.md) has grown bloated or contradictory, asks what should be remembered vs deleted, or says 'remember this'. Triggers: memory engineering, bootstrap a memory system, audit my memory, my agent forgets everything, CLAUDE.md is a mess, run the memory sweep, 建記憶系統, 健檢記憶, 清理記憶. Not a vector database or retrieval tool.

0 Updated 4 weeks ago
danyuchn
AI & Automation Featured

agent-recall

Persistent compounding memory for AI agents. 5 default MCP tools: session_start, session_end, remember, recall, check. Full surface (18 tools) available with --full flag. Two-verb model: inhale (session_start) and exhale (session_end). Correction-first memory with decision trail tracking, watch_for warnings, palace rooms with salience scoring, cross-project insight matching, same-day journal merging, ambient recall hooks. Local markdown only. Zero cloud, zero telemetry, Obsidian-compatible. Optional Supabase backend: when configured via `ar setup supabase`, recall() uses pgvector cosine similarity on OpenAI/Voyage embeddings instead of keyword search — same API, semantic understanding. Gracefully degrades to local search if not configured.

371 Updated 3 days ago
Goldentrii