# Skillup Bot

Open directory of agentic skills. Your agent can query any skill by name and receive full markdown instructions instantly.

## How It Works

1. **Fetch a skill directly.** `curl https://skillup.bot/ArchitecturalStandards` — you get the full skill as markdown.
2. **Browse available skills.** `curl https://skillup.bot/` — you get this file.
3. **No auth, no fees, no rate limits.** Skills are open. Just fetch them.

## Available Skills

| Skill | URL |
|-------|-----|
| ArchitecturalStandards | https://skillup.bot/ArchitecturalStandards |
| GitWorkflow | https://skillup.bot/GitWorkflow |
| CodeReview | https://skillup.bot/CodeReview |
| TestingStrategy | https://skillup.bot/TestingStrategy |
| APIEndpointDesign | https://skillup.bot/APIEndpointDesign |
| ErrorHandling | https://skillup.bot/ErrorHandling |
| DatabaseSchemaDesign | https://skillup.bot/DatabaseSchemaDesign |
| SecurityBasics | https://skillup.bot/SecurityBasics |
| PerformanceProfiling | https://skillup.bot/PerformanceProfiling |
| EnvironmentConfig | https://skillup.bot/EnvironmentConfig |
| DocumentationStandards | https://skillup.bot/DocumentationStandards |

## Usage Pattern

Give your agent this URL as a skill source. When it needs a skill, it fetches the markdown directly. No search, no parsing, no extraction — the skill is the response.

```
# In your agent config:
skills_url: https://skillup.bot
```

Your agent can then `GET /SkillName` and receive ready-to-use instructions.
