project-guidelines-example

Provides a project-specific skill template covering architecture, code patterns, testing, and deployment workflows.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/Femad-6/my-skills --skill project-guidelines-example-femad-6
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: project-guidelines-example
Source: https://github.com/Femad-6/my-skills/tree/main/.github/skills/project-guidelines-example
Command: npx skills add https://github.com/Femad-6/my-skills --skill project-guidelines-example-femad-6

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams struggle to give AI assistants consistent project context, leading to generic code suggestions that ignore established architecture, conventions, and testing requirements. ## Core Features & Use Cases - Architecture Documentation: Captures tech stack details (Next.js, FastAPI, Supabase, Claude API) and service topology so generated code fits the real system. - Code Pattern Library: Provides reusable patterns for API responses, frontend fetch wrappers, Claude structured output, and React hooks. - Testing & Deployment Standards: Defines pytest and React Testing Library structures, coverage targets, and a pre-deployment checklist for Cloud Run. - Use Case: Copy this template when starting a new project, replace the Zenith-specific details with your own stack and conventions, and the AI will follow your project's rules in every session. ## Quick Start Adapt this project guidelines template to document my application's architecture, code patterns, and testing requirements.

Frequently Asked Questions about project-guidelines-example

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a project-specific skill for my codebase?

Copy this template and replace its sections with your own architecture overview, file structure, code patterns, testing requirements, and deployment workflow. Keep the SKILL.md frontmatter with a unique name and description so the skill is discoverable.

What should a project guidelines document include?

Include the tech stack, service architecture diagram, directory structure, canonical code patterns for APIs and components, testing commands and structures, deployment steps, and critical rules such as coverage minimums and immutability constraints.

How do I get structured output from the Claude API in Python?

Define a Pydantic model for the result, pass its JSON schema as a tool definition, and set tool_choice to force that tool. The response contains a tool_use block whose input validates directly against your model.

Can this template work with frameworks other than Next.js and FastAPI?

Yes, the structure is stack-agnostic. Swap the example patterns for your own framework conventions while keeping the same sections: architecture, file structure, code patterns, testing, deployment, and critical rules.

Why enforce rules like immutability and file size limits in a skill?

Explicit critical rules constrain AI-generated code to match team standards, preventing common issues like mutated state, oversized files, missing error handling, and console.log statements in production code.