From career
Query Pinecone (or fallback to grep-over-markdown) for context relevant to a task. Returns ranked snippets with cited paths. Used by suggest-companies, meeting-prep, weekly-plan, self-healing-context when CONTEXT_STORE=pinecone. Caller decides what to do with results.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin careerThis skill is limited to using the following tools:
Pulls relevant context from the workspace for the current task. Two backends:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Pulls relevant context from the workspace for the current task. Two backends:
CONTEXT_STORE=pinecone → Pinecone semantic search.CONTEXT_STORE=markdown (default) → ripgrep over working-folder.The skill returns citations — paths + chunks. The caller is responsible for using them.
$ARGUMENTS:
--query="<text>" — natural-language query.--type=<ground-truth|crm|domain-note|recommendation|brief|plan|meeting|inbox|all> — filter by chunk type. Default: all.--top=<n> — top-N results. Default: 8.--min-score=<float> — min relevance score (Pinecone only). Default: 0.6./* invoked internally by other skills, not via slash command */
semantic-recall --query="prior outreach to AI policy companies in Tel Aviv" --type=crm --top=10
semantic-recall --query="user's stated salary floor and reasoning" --type=ground-truth
CONTEXT_STORE. If pinecone, also PINECONE_INDEX.search-records: query text, filter by type if provided, top-K = --top.--min-score.{path, section, score, snippet (from metadata), type}.rg -n over working-folder/ matching files for --type (e.g. --type=crm → crm/*.md).score (use match-count instead).Print machine-parseable lines:
result: path=<path> section="<heading>" score=<float> type=<type>
snippet: <one-line preview>
…or a JSON block if caller passed --json.
CONTEXT_STORE=pinecone but the manifest is older than 24 hours, warn that recall may be stale.