Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# AGENTS.md

Guidance for AI coding agents working in this repository.

## What this repository is

A collection of skills for AI coding agents working with the Pro Cycling Manager game. Skills are packaged instructions and scripts that extend agent capabilities.

## Creating a New Skill

Skills follow the [Agent Skills](https://agentskills.io/) format, so they work with any agent that reads it.

Prefer the `/skill-creator:skill-creator` skill (if available in your agent environment, otherwise skip this step) to create a new skill (or to edit and
improve an existing one). It walks through capturing intent, drafting `SKILL.md`, running
test prompts, and optimizing the description for reliable triggering. Then apply the
repository conventions below to the result.

### Directory Structure

```
skills/
{skill-name}/ # kebab-case directory name
SKILL.md # Required: skill definition
scripts/ # Optional: executable scripts
{script-name}.sh # Bash scripts
{script-name}.mjs # Node scripts
references/ # Optional: supporting docs loaded on demand
lib/ # Optional: shared code for scripts
```

### Naming Conventions

- **Skill directory**: `kebab-case` (e.g., `pcm-db-editor`)
- **SKILL.md**: Always uppercase, always this exact filename
- **Scripts**: `kebab-case.sh` or `kebab-case.mjs` (e.g., `open-cdb.sh`)
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@AGENTS.md
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ Each skill contains:

## Resources

- [cdb-converter](https://github.com/PCMStack/converter) — lossless `.cdb` ↔ SQLite converter
- [pcm-mcp](https://github.com/PCMStack/mcp) — MCP server for Pro Cycling Manager saves
- [Agent Skills](https://agentskills.io/) — the skill format used here
- [cdb-converter](https://github.com/PCMStack/converter) — Convert Pro Cycling Manager CDB files to/from SQLite.
- [pcm-mcp](https://github.com/PCMStack/mcp) — MCP server for querying and editing Pro Cycling Manager game databases
- [Agent Skills](https://agentskills.io/) — The skill format used here