Help us improve
Share bugs, ideas, or general feedback.
From cc-skills-meta
Constitutional Knowledge System - unified command for search, add, and session extraction
npx claudepluginhub enduser123/cc-skills-metaHow this skill is triggered — by the user, by Claude, or both
Slash command
/cc-skills-meta:cksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Constitutional Knowledge System — unified command for searching, adding, and session extraction. Stores and retrieves project wisdom with FAISS vector search.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Constitutional Knowledge System — unified command for searching, adding, and session extraction. Stores and retrieves project wisdom with FAISS vector search.
cks (via installed package - verify with pip show claude-cks)/cks add - Add content to CKS with auto-detection
/cks add "Results: 32% reduction in latency"
/cks add --file pattern.md
/cks add --url https://example.com/article
/cks search - Search CKS (default behavior)
/cks "hook patterns"
/cks search "hybrid enforcement"
/cks session - Extract from current session
/cks session
/cks (no arguments) - Auto-extract lessons from current session
/cks # Extract and store lessons from current session
/cks add)| Pattern | Detection | CKS Method |
|---|---|---|
| pattern | "Results:", "Anti-pattern:", "%" | CKS.ingest_pattern() |
| memory | Q&A format (What/How/Why/etc.) | CKS.ingest_memory() |
| code | "def ", "class ", "function " | CKS.ingest_code() |
| document | Default / .md/.txt/.rst files | Chunking via ingest_cli |
# Add content (auto-detects type)
/cks add "Hybrid enforcement pattern... Results: 32% reduction"
# Search CKS
/cks "hook patterns"
/cks search "hybrid approach"
# Extract from session
/cks session
# From file
/cks add --file optimization_summary.md
# From URL
/cks add --url https://example.com/article