readme-generator

Create comprehensive, professional README documentation for projects.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "readme-generator" with this command: npx skills add monkey1sai/openai-cli/monkey1sai-openai-cli-readme-generator

README Generator

Create comprehensive, professional README documentation for projects.

Core Workflow

  • Analyze project: Identify type and features

  • Add header: Title, badges, description

  • Document setup: Installation and configuration

  • Show usage: Examples and API

  • Add guides: Contributing, license

  • Include extras: Screenshots, roadmap

README Template

Project Name

npm version Build Status Coverage License: MIT TypeScript

Brief description of what this project does and who it's for. One to two sentences that capture the essence of the project.

Features

  • ✨ Feature one with brief description
  • 🚀 Feature two with brief description
  • 🔒 Feature three with brief description
  • 📦 Feature four with brief description

Demo

Demo GIF

Live Demo | Documentation

Quick Start

```bash npx create-project-name my-app cd my-app npm run dev ```

Installation

Prerequisites

  • Node.js 18.0 or higher
  • npm 9.0 or higher (or pnpm/yarn)

Package Manager

```bash

npm

npm install package-name

pnpm

pnpm add package-name

yarn

yarn add package-name ```

From Source

```bash git clone https://github.com/username/repo.git cd repo npm install npm run build ```

Usage

Basic Usage

```typescript import { something } from 'package-name';

const result = something({ option1: 'value', option2: true, });

console.log(result); ```

Advanced Usage

```typescript import { createClient, type Config } from 'package-name';

const config: Config = { apiKey: process.env.API_KEY, timeout: 5000, retries: 3, };

const client = createClient(config);

// Async operation const data = await client.fetch('/endpoint'); ```

With React

```tsx import { Provider, useData } from 'package-name/react';

function App() { return ( <Provider apiKey={process.env.API_KEY}> <MyComponent /> </Provider> ); }

function MyComponent() { const { data, loading, error } = useData('key');

if (loading) return <Spinner />; if (error) return <Error message={error.message} />;

return <div>{data.value}</div>; } ```

API Reference

createClient(config)

Creates a new client instance.

ParameterTypeDefaultDescription
apiKeystringrequiredYour API key
baseUrlstring'https://api.example.com'API base URL
timeoutnumber30000Request timeout in ms
retriesnumber3Number of retry attempts

Returns: Client

client.fetch(endpoint, options?)

Fetches data from the specified endpoint.

```typescript const data = await client.fetch('/users', { method: 'GET', headers: { 'X-Custom': 'value' }, }); ```

client.create(endpoint, data)

Creates a new resource.

```typescript const user = await client.create('/users', { name: 'John Doe', email: 'john@example.com', }); ```

Configuration

Environment Variables

VariableDescriptionRequired
API_KEYYour API keyYes
API_URLCustom API URLNo
DEBUGEnable debug modeNo

Configuration File

Create a config.json in your project root:

```json { "apiKey": "your-api-key", "environment": "production", "features": { "caching": true, "logging": false } } ```

Examples

Example 1: Basic CRUD

```typescript // Create const user = await client.create('/users', { name: 'John' });

// Read const users = await client.fetch('/users');

// Update await client.update(`/users/${user.id}`, { name: 'Jane' });

// Delete await client.delete(`/users/${user.id}`); ```

Example 2: Error Handling

```typescript try { const data = await client.fetch('/protected'); } catch (error) { if (error instanceof AuthError) { console.error('Authentication failed'); } else if (error instanceof NetworkError) { console.error('Network error:', error.message); } else { throw error; } } ```

More examples in the examples directory.

Architecture

``` src/ ├── client/ # Client implementation ├── hooks/ # React hooks ├── utils/ # Utility functions ├── types/ # TypeScript types └── index.ts # Main export ```

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

```bash

Clone the repository

git clone https://github.com/username/repo.git

Install dependencies

npm install

Run tests

npm test

Start development

npm run dev ```

Commit Convention

We use Conventional Commits:

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation
  • test: Tests
  • chore: Maintenance

Roadmap

  • Initial release
  • TypeScript support
  • React Native support
  • Offline mode
  • Plugin system

See the open issues for a full list of proposed features.

FAQ

<details> <summary><strong>How do I get an API key?</strong></summary>

Visit our dashboard to create an account and generate an API key. </details>

<details> <summary><strong>Is there a rate limit?</strong></summary>

Yes, the free tier allows 1000 requests per hour. See our pricing page for higher limits. </details>

<details> <summary><strong>Does it work with Next.js?</strong></summary>

Yes! We have full support for Next.js including App Router and Server Components. </details>

Troubleshooting

Common Issues

Error: API key is invalid

Make sure your API key is correctly set in the environment variables and hasn't expired.

Error: Network timeout

Increase the timeout value in your configuration or check your network connection.

Changelog

See CHANGELOG.md for a history of changes.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Support


Made with ❤️ by Your Name

Badge Examples

<!-- Build Status --> CI

<!-- npm --> npm npm downloads

<!-- Coverage --> codecov

<!-- License --> License: MIT License: Apache 2.0

<!-- Language --> TypeScript JavaScript

<!-- Framework --> React Next.js Node.js

<!-- Package Manager --> pnpm

<!-- PRs Welcome --> PRs Welcome

<!-- Maintenance --> Maintenance

<!-- Custom Shields.io --> Custom Badge

CONTRIBUTING.md Template

Contributing to Project Name

Thank you for your interest in contributing! This document provides guidelines and steps for contributing.

Code of Conduct

Please read and follow our Code of Conduct.

How Can I Contribute?

Reporting Bugs

  • Check existing issues first
  • Use the bug report template
  • Include reproduction steps
  • Provide environment details

Suggesting Features

  • Check existing feature requests
  • Use the feature request template
  • Explain the use case
  • Consider implementation approach

Pull Requests

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/my-feature
  3. Make your changes
  4. Write/update tests
  5. Run the test suite: npm test
  6. Commit with conventional commits: git commit -m 'feat: add new feature'
  7. Push to your fork: git push origin feature/my-feature
  8. Open a Pull Request

Development Setup

```bash

Clone your fork

git clone https://github.com/your-username/repo.git

Add upstream remote

git remote add upstream https://github.com/original-owner/repo.git

Install dependencies

npm install

Create a branch

git checkout -b feature/my-feature ```

Coding Standards

  • Follow existing code style
  • Use TypeScript strict mode
  • Write meaningful commit messages
  • Add tests for new features
  • Update documentation as needed

Testing

```bash

Run all tests

npm test

Run tests in watch mode

npm run test:watch

Run specific test file

npm test -- path/to/test.ts ```

Questions?

Feel free to open an issue or reach out on Discord.

CHANGELOG.md Template

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

Added

  • New feature description

Changed

  • Change description

Fixed

  • Bug fix description

1.2.0 - 2024-01-15

Added

  • Add new authentication method
  • Add TypeScript support for config files

Changed

  • Improve error messages
  • Update dependencies

Fixed

  • Fix memory leak in connection pool
  • Fix race condition in cache invalidation

1.1.0 - 2024-01-01

Added

  • Add retry mechanism for failed requests
  • Add timeout configuration option

Deprecated

  • Deprecate oldMethod() in favor of newMethod()

1.0.0 - 2023-12-15

Added

  • Initial release
  • Core API functionality
  • React hooks
  • TypeScript types

Best Practices

  • Start with value: Lead with what the project does

  • Quick start first: Get users running quickly

  • Show, don't tell: Include code examples

  • Keep updated: Sync with code changes

  • Use badges: Show project health

  • Add visuals: Screenshots and diagrams

  • Link related: Connect to other docs

  • Be consistent: Follow established patterns

Output Checklist

Every README should include:

  • Project title and description

  • Badges (build, version, license)

  • Features list

  • Quick start / Installation

  • Usage examples

  • API documentation

  • Configuration options

  • Contributing guidelines

  • License information

  • Support/contact info

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

bruno-collection-generator

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

redis-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

responsive-design-system

No summary provided by upstream source.

Repository SourceNeeds Review