From tech-writer
Generate a comprehensive README.md by analyzing the project's code, config, and structure
npx claudepluginhub silviaare95/xari-plugins --plugin tech-writerThis skill uses the workspace's default tool permissions.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Retrieves current documentation, API references, and code examples for libraries, frameworks, SDKs, CLIs, and services via Context7 CLI. Ideal for API syntax, configs, migrations, and setup queries.
Uses ctx7 CLI to fetch current library docs, manage AI coding skills (install/search/generate), and configure Context7 MCP for AI editors.
Style: $0 (default: standard)
Analyze the project:
package.json / pyproject.toml / go.mod for project metadataGenerate sections based on style:
.env.example)Generate environment variable documentation:
.env.example if it existsWrite the README:
# Project Name
Brief description of what this project does.
## Tech Stack
- **Runtime**: Node.js 20
- **Framework**: Next.js 14 (App Router)
- **Database**: PostgreSQL + Prisma
- **Styling**: Tailwind CSS
## Getting Started
### Prerequisites
- Node.js >= 20
- PostgreSQL >= 15
### Installation
\`\`\`bash
git clone <repo-url>
cd <project>
npm install
cp .env.example .env
# Edit .env with your values
npx prisma db push
npm run dev
\`\`\`
## Environment Variables
| Variable | Required | Description | Example |
|----------|----------|-------------|---------|
| DATABASE_URL | yes | PostgreSQL connection string | postgresql://... |
## Project Structure
\`\`\`
src/
├── app/ # Next.js routes
├── components/ # React components
├── lib/ # Utilities and config
└── server/ # API logic
\`\`\`