Best for
- Use when creating documentation for new projects, updating existing READMEs, or improving project onboarding.
ArabelaTso/Skills-4-SE/skills/readme-generator/SKILL.md
Generate comprehensive, user-friendly README.md files for code repositories. Use when creating documentation for new projects, updating existing READMEs, or improving project onboarding. Produces READMEs with project introduction, prerequisites, environment setup, executable usage instructions, and repository structure overview. Supports application projects, libraries, and research codebases.
Decision brief
Generate comprehensive, user-friendly README. md files for code repositories.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill "skills/readme-generator"Inspect the Agent Skill "readme-generator" from https://github.com/ArabelaTso/Skills-4-SE/blob/4f38503747e0617504bce5329283ef837d375c09/skills/readme-generator/SKILL.md at commit 4f38503747e0617504bce5329283ef837d375c09. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Explore the repository to understand its organization and purpose:
Provide step-by-step setup instructions that are reproducible:
Review the “Run tests to verify setup” section in the pinned source before continuing.
Document how to run and use the project with executable examples:
Review the “Usage” section in the pinned source before continuing.
Permission review
The documentation includes network, browsing, or remote request actions.
The documentation includes network, browsing, or remote request actions.
The documentation includes sending, uploading, or posting data to a remote service.
curl -X POST http://localhost:3000/api/resources \The documentation asks the agent to create, modify, or delete local files.
Create a visual directory tree showing the codebase organization:Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 240 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Analyze a code repository and generate a comprehensive, reproducible README.md that enables users to quickly understand, set up, and use the project with clear instructions and executable examples.
Explore the repository to understand its organization and purpose:
Key files to examine:
package.json, pyproject.toml, Cargo.toml, go.mod - Project metadatarequirements.txt, Pipfile, pom.xml, build.gradle - Dependenciesmain.py, index.js, app.py, cmd/main.go).env.example, config.yaml, settings.py)Makefile, package.json scripts, tasks.py)docs/, existing README.md, CONTRIBUTING.md)Information to extract:
Create a clear, compelling introduction section:
Title and badges:
# Project Name



Description (2-4 sentences):
Example:
## About
[Project Name] is a lightweight web framework for building RESTful APIs with minimal boilerplate. It provides automatic request validation, built-in authentication, and OpenAPI documentation generation. Designed for rapid prototyping and production-ready microservices, it reduces API development time by 50% compared to traditional frameworks.
List all system requirements and dependencies:
Format:
## Prerequisites
Before you begin, ensure you have the following installed:
- **[Language/Runtime]**: [Version] or higher
- Download: [URL]
- Verify: `[command] --version`
- **[Package Manager]**: [Version] or higher
- Download: [URL]
- Verify: `[command] --version`
- **[Database/Service]** (optional): [Version]
- Required for: [specific features]
- Download: [URL]
- **[System Dependencies]**: [List]
- Install on macOS: `brew install [packages]`
- Install on Ubuntu: `sudo apt-get install [packages]`
- Install on Windows: [instructions]
Include:
Provide step-by-step setup instructions that are reproducible:
Format:
## Installation
### 1. Clone the repository
\`\`\`bash
git clone https://github.com/username/project-name.git
cd project-name
\`\`\`
### 2. Install dependencies
\`\`\`bash
# For Python projects
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
# For Node.js projects
npm install
# For Go projects
go mod download
\`\`\`
### 3. Configure environment
\`\`\`bash
# Copy example environment file
cp .env.example .env
# Edit .env with your configuration
# Required variables:
# DATABASE_URL=postgresql://localhost/dbname
# API_KEY=your_api_key_here
\`\`\`
### 4. Initialize database (if applicable)
\`\`\`bash
# Run migrations
npm run migrate
# Or: python manage.py migrate
# Or: make migrate
\`\`\`
### 5. Verify installation
\`\`\`bash
# Run tests to verify setup
npm test
# Or: pytest
# Or: go test ./...
\`\`\`
Best practices:
Document how to run and use the project with executable examples:
For applications:
## Usage
### Running the application
\`\`\`bash
# Development mode with hot reload
npm run dev
# Production mode
npm start
# With custom port
PORT=8080 npm start
\`\`\`
The application will be available at `http://localhost:3000`
### Basic operations
**Create a new resource**:
\`\`\`bash
curl -X POST http://localhost:3000/api/resources \
-H "Content-Type: application/json" \
-d '{"name": "example", "value": 42}'
\`\`\`
**List all resources**:
\`\`\`bash
curl http://localhost:3000/api/resources
\`\`\`
For libraries:
## Usage
### Basic example
\`\`\`python
from project_name import Client
# Initialize client
client = Client(api_key="your_key")
# Perform operation
result = client.fetch_data(query="example")
print(result)
\`\`\`
### Advanced usage
\`\`\`python
# With custom configuration
client = Client(
api_key="your_key",
timeout=30,
retry_count=3
)
# Batch operations
results = client.batch_fetch([
{"query": "item1"},
{"query": "item2"}
])
\`\`\`
For CLI tools:
## Usage
### Basic commands
\`\`\`bash
# Show help
project-cli --help
# Run with default options
project-cli process input.txt
# Run with custom options
project-cli process input.txt --output result.txt --verbose
\`\`\`
### Common workflows
**Workflow 1: Data processing**
\`\`\`bash
# Step 1: Validate input
project-cli validate data.csv
# Step 2: Process data
project-cli process data.csv --format json
# Step 3: Export results
project-cli export results.json --format pdf
\`\`\`
Create a visual directory tree showing the codebase organization:
Format:
## Repository Structure
\`\`\`
project-name/
├── src/ # Source code
│ ├── api/ # API endpoints
│ ├── models/ # Data models
│ ├── services/ # Business logic
│ └── utils/ # Utility functions
├── tests/ # Test files
│ ├── unit/ # Unit tests
│ └── integration/ # Integration tests
├── docs/ # Documentation
├── scripts/ # Build and deployment scripts
├── config/ # Configuration files
├── .env.example # Environment variables template
├── package.json # Project dependencies
├── README.md # This file
└── LICENSE # License information
\`\`\`
### Key directories
- **src/api**: REST API endpoints and route handlers
- **src/models**: Database models and schemas
- **src/services**: Core business logic and external integrations
- **tests**: Comprehensive test suite with >80% coverage
- **docs**: Additional documentation and API specifications
Best practices:
Include other helpful sections as appropriate:
Configuration:
## Configuration
The application can be configured via environment variables:
| Variable | Description | Default | Required |
|----------|-------------|---------|----------|
| `DATABASE_URL` | PostgreSQL connection string | - | Yes |
| `API_KEY` | External API key | - | Yes |
| `PORT` | Server port | 3000 | No |
| `LOG_LEVEL` | Logging level (debug/info/error) | info | No |
Development:
## Development
### Running tests
\`\`\`bash
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run specific test file
npm test -- tests/api.test.js
\`\`\`
### Code formatting
\`\`\`bash
# Check formatting
npm run lint
# Auto-fix issues
npm run lint:fix
\`\`\`
Troubleshooting:
## Troubleshooting
### Common issues
**Issue**: `ModuleNotFoundError: No module named 'xyz'`
**Solution**: Ensure virtual environment is activated and dependencies are installed:
\`\`\`bash
source venv/bin/activate
pip install -r requirements.txt
\`\`\`
**Issue**: Database connection fails
**Solution**: Verify DATABASE_URL in .env and ensure PostgreSQL is running:
\`\`\`bash
pg_isready
\`\`\`
License and Contributing:
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Contributing
Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.
Clarity:
Completeness:
Reproducibility:
Maintainability:
Frequently asked questions
Generate comprehensive, user-friendly README. md files for code repositories.
The source record exposes this install command: npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill "skills/readme-generator". Inspect the command and pinned source before running it.
Static rules flagged network, send-data, write-files in the source; the page lists the matching lines and excerpts.
Alternatives
mgiovani/cc-arsenal
Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r
github/awesome-copilot
Build, review, debug, package, and test Roslyn diagnostic analyzers, code fix providers, and incremental source generators. Use for DiagnosticAnalyzer, CodeFixProvider, IIncrementalGenerator, IOperation analysis, Microsoft.CodeAnalysis dependency pinning, Roslyn test harnesses, C#/VB tests, and analyzer NuGet packaging.
upex-galaxy/agentic-qa-boilerplate
Analyze, prioritize, and document test cases in TMS (Jira/Xray), or repair an existing Story-ATS-ATP-ATR-TC cascade through a sealed explicit mode. Use for Test/ATP/ATR artifacts, ROI and automation verdicts, maintaining traceability, fix-traceability, or broken TMS links. The repair-traceability mode audits, plans, waits for explicit approval, applies, and verifies without launching the general documentation workflow. Do NOT use for writing test code (test-automation) or running suites (regress
NVIDIA/skills
Autonomous NeMo-RL research agent workflow for directed hypothesis testing and open-ended discovery. Guides agents through the full experiment lifecycle: understanding recipes and environments, wiring RL or NeMo-gym runs, launching reproducible baselines and iterations, analyzing results, preserving human oversight, and using git plus TSV logs as the research ledger. Do NOT use for: bug fixes, code review, documentation, refactoring, dependency updates, or single-file changes.