Skip to main content
ContextForge

Packs

Curated AI-agent instruction packs from the official registry. Install any pack with one command.

20 packs across 5 topicsBrowse registry JSON
always-active= installed on every project by inittask-triggered= installed when stack is detected

Agent Workflow

Core behavior packs. Installed on every project by default.

verification-before-completionalways-active

Prevents agents from claiming success without fresh, observable evidence. The single most important pack.

npx @contextforge/cli add verification-before-completion
systematic-debuggingalways-active

Forces methodical root-cause debugging instead of applying random patches.

npx @contextforge/cli add systematic-debugging
code-reviewalways-active

Makes agents review significant changes for correctness, security, performance, and maintainability.

npx @contextforge/cli add code-review
git-workflowalways-active

Guides Git operations safely. Permission-gates commits, pushes, merges, rebases, resets, and history rewrites.

npx @contextforge/cli add git-workflow
dependency-managementalways-active

Prevents careless package additions. Enforces checking existing dependencies before adding new ones.

npx @contextforge/cli add dependency-management
diataxis-docsalways-active

Guides documentation updates using the Diátaxis framework: tutorial, how-to, reference, and explanation.

npx @contextforge/cli add diataxis-docs

Architecture

System design and architecture guidance.

system-designtask-triggered

System design principles and architectural decision guidance for backend and full-stack work.

npx @contextforge/cli add system-design
frontend-system-designtask-triggered

Frontend-specific architecture patterns: component hierarchy, state management, and data flow.

npx @contextforge/cli add frontend-system-design

Frontend / React / Next.js

Framework and UI library best practices.

nextjs-best-practicestask-triggered

App Router patterns, server components, data fetching, and performance guidance for Next.js.

npx @contextforge/cli add nextjs-best-practices
react-performancetask-triggered

React performance patterns: memoization, code splitting, virtualization, and avoiding unnecessary re-renders.

npx @contextforge/cli add react-performance
react-compositiontask-triggered

Component composition patterns: compound components, render props, custom hooks, and clean API design.

npx @contextforge/cli add react-composition
shadcn-uitask-triggered

Correct usage of shadcn/ui components, customization patterns, and avoiding common mistakes.

npx @contextforge/cli add shadcn-ui
tailwind-v4task-triggered

Tailwind CSS v4 patterns, utility-first best practices, and avoiding anti-patterns.

npx @contextforge/cli add tailwind-v4
ui-ux-designtask-triggered

UI/UX principles for developer tools and web apps: accessibility, hierarchy, and interaction design.

npx @contextforge/cli add ui-ux-design
frontend-aestheticstask-triggered

Visual quality guidance: typography, spacing, color, and polish for production-quality UI.

npx @contextforge/cli add frontend-aesthetics
typescript-advanced-typestask-triggered

Advanced TypeScript patterns: discriminated unions, template literals, conditional types, and inference.

npx @contextforge/cli add typescript-advanced-types

Backend / Security

Server-side patterns, database, and security.

supabasetask-triggered

Supabase patterns: RLS policies, auth, edge functions, and avoiding common Supabase pitfalls.

npx @contextforge/cli add supabase
security-baselinetask-triggered

Security fundamentals: input validation, auth patterns, secret management, and OWASP top-10 awareness.

npx @contextforge/cli add security-baseline
api-designtask-triggered

REST and API design principles: naming, versioning, error responses, and consistency.

npx @contextforge/cli add api-design

Testing

Testing strategy and patterns.

test-driven-developmenttask-triggered

TDD workflow guidance: test-first thinking, writing testable code, and meaningful test coverage.

npx @contextforge/cli add test-driven-development

Install all core packs at once

Running init installs all always-active packs plus detected stack packs automatically.

npx @contextforge/cli init