Loading...
Loading...
Creates comprehensive README files with templates for different project types. Use when creating README, project documentation, or getting started guides.
npx skill4agent add armanzeroeight/fastagent-plugins readme-generator# Detect project type
ls package.json && echo "Node.js project" || \
ls setup.py pyproject.toml && echo "Python project" || \
ls go.mod && echo "Go project"| Type | Template | Key Sections |
|---|---|---|
| Library | library | Installation, API, Examples |
| CLI Tool | cli | Installation, Commands, Options |
| Web App | webapp | Features, Setup, Deployment |
| API | api | Endpoints, Authentication, Examples |
# Project Name
Brief one-line description of what the project does.
[](LICENSE)
[](package.json)## Installation
\`\`\`bash
npm install project-name
# or
pip install project-name
\`\`\`## Usage
\`\`\`javascript
const project = require('project-name');
// Basic example
project.doSomething();
\`\`\`

