General
PromptBeginner5 minmarkdown
Untitled Skill
193
Personal Knowledge Base with semantic search. Use to search indexed markdown documents for relevant context, notes, or documentation.
Loading actions...
Main instructions and any bundled files for this skill.
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
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>
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
risks