add-neon-docs
Automatically inserts Neon documentation references into your project files.
Install
mkdir -p .claude/skills/add-neon-docs && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/224" && unzip -o skill.zip -d .claude/skills/add-neon-docs && rm skill.zipInstalls to .claude/skills/add-neon-docs
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this skill when the user asks to add documentation, add docs, add references, or install documentation about Neon. Adds Neon best practices reference links to project AI documentation (CLAUDE.md, AGENTS.md, or Cursor rules). Does not install packages or modify code.Key capabilities
- →Locate project documentation files
- →Insert standardized reference sections
- →Format Neon-specific markdown links
- →Organize resource sections
- →Validate documentation file presence
How it works
It appends curated reference URLs to existing AI documentation files based on a lookup of Neon-specific best practice documents.
Inputs & outputs
When to use add-neon-docs
- →Adding Neon reference docs to a project
- →Installing Neon best practices
- →Setting up project AI documentation
About this skill
Add Neon Knowledge References to Project
This skill adds reference links to Neon documentation and best practices in your project's AI documentation file, enabling AI assistants to quickly access Neon-specific patterns and guidelines without cluttering your project with large documentation files.
How It Works
This skill follows a simple workflow:
- Load metadata - Read skill information from
skill-knowledge-map.json - Detect documentation file - Find
CLAUDE.md,AGENTS.md, or Cursor rules files - Ask permission - Show what will be added and where
- Add references - Insert URLs in a "Resources & References" section
- Report completion - Confirm successful installation
For detailed workflow steps, see install-knowledge.md.
Parameters
SKILL_NAME Parameter
Optional. Specifies which skill documentation to install (e.g., "neon-drizzle"). If not provided, you'll be prompted to choose from available skills defined in skill-knowledge-map.json.
Usage Examples
Called from another skill:
Execute the add-neon-docs skill with SKILL_NAME="neon-drizzle"
Called directly by user:
- "Add neon drizzle knowledge to my project"
- "Install neon serverless documentation"
- "Set up Neon best practices for my AI assistant"
What Gets Added
References are added to a "Resources & References" section in your AI documentation file:
## Resources & References
- **Neon and Drizzle ORM best practices**: https://raw.githubusercontent.com/neondatabase-labs/ai-rules/main/neon-drizzle.mdc
- **Serverless connection patterns**: https://raw.githubusercontent.com/neondatabase-labs/ai-rules/main/neon-serverless.mdc
Target Files (in priority order):
CLAUDE.md- Most common for Claude Code projectsAGENTS.md- Custom AI documentation files.cursor/README.mdor.cursor/rules.md- Cursor IDE projects- Creates
CLAUDE.mdif none exist
Behavior:
- Existing "Resources & References" sections: New links are appended
- No existing section: Section is created at end of file
- No documentation file:
CLAUDE.mdis created with references
Related Skills
- neon-drizzle - Sets up Drizzle ORM, then offers this skill
- neon-serverless - Sets up connections, then offers this skill
- neon-toolkit - Sets up ephemeral databases, then offers this skill
Workflow Reference
For complete implementation details:
- Workflow:
install-knowledge.md- Step-by-step agent workflow with error handling - Metadata:
skill-knowledge-map.json- Skill definitions and reference URLs
Workflow Implementation
Now I'll execute the installation workflow for you.
Parameter received: SKILL_NAME = ${SKILL_NAME || "not provided - will ask user"}
Execute install-knowledge.md with the specified SKILL_NAME.
When not to use it
- →Installing database drivers
- →Modifying source code for Neon
- →Configuring infrastructure settings
Prerequisites
Limitations
- →Non-destructive to existing docs
- →Does not automate package installation
- →Targeted at AI documentation files only
How it compares
It automates the documentation of external knowledge bases into the project context without modifying application code.
Compared to similar skills
add-neon-docs side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| add-neon-docs (this skill) | 7 | 8mo | No flags | Beginner |
| database-documentation-gen | 2 | 26d | Review | Intermediate |
| domain-model-documentation | 0 | 5mo | No flags | Intermediate |
| sql-optimization-patterns | 64 | 2mo | No flags | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
database-documentation-gen
jeremylongshore
Process use when you need to work with database documentation. This skill provides automated documentation generation with comprehensive guidance and automation. Trigger with phrases like "generate docs", "document schema", or "create database documentation".
domain-model-documentation
DABO-ERP
Use this skill when building or reviewing the domain model for the hotel/hostel management system. This includes defining entities, attributes, relationships, and enumerations based on hospitality domain expertise.
sql-optimization-patterns
wshobson
Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database schemas, or optimizing application performance.
drizzle-orm
EpicenterHQ
Drizzle ORM patterns for type branding and custom types. Use when working with Drizzle column definitions, branded types, or custom type conversions.
postgres-patterns
affaan-m
PostgreSQL database patterns for query optimization, schema design, indexing, and security. Based on Supabase best practices.
postgresql-table-design
wshobson
Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features