From context-engine
Deep knowledge layer - project-specific library quirks, stack recipes, dependency notes. Auto-loaded when working with knowledge files or when implement/debug discovers something worth preserving.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
Project-specific technical knowledge that persists across sessions. Three tiers:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
Project-specific technical knowledge that persists across sessions. Three tiers:
.context/knowledge/
LEARNINGS.md Quick insights (2-3 sentences each)
libraries/ Per-library deep reference
TEMPLATE.md Copy for new libraries
[library-name].md Quirks, workarounds, patterns
stack/ Integration recipes
TEMPLATE.md Copy for new recipes
[recipe-name].md Multi-tool config patterns
dependencies/
PINS.md Version pins and upgrade blockers
The implementer and debugger agents write to knowledge automatically when they:
libraries/[name].md)dependencies/PINS.md)stack/[recipe].md)LEARNINGS.md)Use /learn to manually route knowledge:
/learn library quirk: React Query v5 onSuccess removed, use onSettled/learn stack recipe: Next.js + Prisma + tRPC setup/learn dependency pin: Tailwind pinned to 3.x, 4.x breaks PostCSS/learn insight: Our API rate limiting needs per-user, not per-IPBefore implementing or debugging, check relevant knowledge:
LEARNINGS.md - scan for relevant quick insightslibraries/[name].md - if working with a specific librarystack/[name].md - if touching an integration pointdependencies/PINS.md - before upgrading or adding dependencieslibraries/ or stack/libraries/[name].md| What | Where | Why |
|---|---|---|
| Error signatures + fixes | .context/errors/ | Greppable by exact error text |
| Code conventions | .context/patterns/ | Style rules, not library-specific |
| Architecture decisions | .context/decisions/ | "We chose X over Y because..." |
| Library quirks | .context/knowledge/libraries/ | "X behaves unexpectedly when..." |
| Config recipes | .context/knowledge/stack/ | "To set up X + Y together, do..." |
| Version constraints | .context/knowledge/dependencies/ | "Pinned to vX because..." |
| Quick insights | .context/knowledge/LEARNINGS.md | Everything else worth remembering |