Documentation

Comprehensive guides, references, and examples for using AI tools effectively.

📚 Guides

Detailed tutorials and walkthroughs for various AI tool workflows.

📖 References

Quick reference materials and cheat sheets.

💡 Examples

Sample implementations and real-world use cases.

🤖 Automation Tools

AI-powered scripts and workflows.

Repository Documentation

Structure Overview

ai-tools/
├── prompts/          # Categorized AI prompts
│   ├── coding/       # Development-related prompts
│   ├── writing/      # Content creation prompts
│   ├── analysis/     # Data analysis prompts
│   ├── creative/     # Creative and brainstorming prompts
│   └── productivity/ # Efficiency and planning prompts
├── instructions/     # Step-by-step guides
│   ├── setup/        # Installation and configuration
│   ├── usage/        # How-to guides
│   └── best-practices/ # Recommended approaches
├── modes/           # AI interaction modes
│   ├── development/  # Coding configurations
│   ├── research/     # Research configurations
│   ├── documentation/ # Writing configurations
│   └── troubleshooting/ # Problem-solving configurations
├── docs/            # Documentation and guides
│   ├── guides/       # Detailed tutorials
│   ├── references/   # Quick references
│   └── examples/     # Sample implementations
└── thoughts/        # Personal insights and experiments
    ├── reflections/  # Learning insights
    ├── experiments/  # Testing results
    └── ideas/        # Future projects

Contributing Guidelines

Adding New Content

  1. Choose the Right Category: Determine whether your content is a prompt, instruction, mode, or thought
  2. Use Consistent Naming: Follow the naming convention category-specific-name.md
  3. Include Complete Metadata: Fill out all relevant front matter fields
  4. Provide Examples: Include usage examples where applicable
  5. Test Your Content: Ensure prompts and instructions work as expected

Commit Conventions

This project follows Conventional Commits specification:

See the Conventional Commits Guide for details.

Content Standards

File Templates

Each content type has a specific template with required front matter:

GitHub Pages Deployment

This repository is configured for automatic GitHub Pages deployment:

  1. Automatic Building: GitHub Actions builds the site on every push to main
  2. Custom Domain: Configure in repository settings if desired
  3. SSL/HTTPS: Automatically enabled for github.io domains
  4. Branch Protection: Main branch is protected to ensure quality

Local Development

To work on this repository locally:

# Clone the repository
git clone https://github.com/MauGx3/ai-tools.git
cd ai-tools

# Install dependencies
bundle install

# Start the development server
bundle exec jekyll serve

# Visit http://localhost:4000 to view the site

Maintenance