Agent skill
pkb
Personal Knowledge Base with semantic search. Use to search indexed markdown documents for relevant context, notes, or documentation.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/pkb
SKILL.md
Searching
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> search "<query>" [topK]
dbPath: Path to the knowledge database file (e.g.,~/.pkb/knowledge.db)query: Natural language search querytopK: Number of results to return (default: 10)
Example:
npx tsx ~/.claude/skills/pkb/scripts/cli.ts ~/.pkb/knowledge.db search "how to configure AWS credentials" 5
Managing Tracked Sources
List tracked sources:
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> list
Track a new file or directory:
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> track <path>
Untrack a source:
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> untrack <path>
Sync all tracked sources (reindex changed files):
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> sync
Sync with continuous watching:
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> sync --watch
Index a specific file (tracks it if not already tracked):
npx tsx <path to pkb skill>/scripts/cli.ts <dbPath> index <file>
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?