---
model: openai/gpt-4o-mini
input:
  schema:
    projects(array):
      number: number
      title: string
      description: string
output:
  schema:
    classifications(array):
      number: number
      category: string
      reasoning: string
---
You are a project classification expert. Analyze the following GitHub project boards and categorize each one.

## Available Categories

1. **supply** - Projects related to inventory, materials, procurement, supplies, stock management
   - Examples: "Supply Management", "Inventory Tracker", "Materials Board"

2. **task** - Projects related to development work, features, sprints, product development
   - Examples: "Development Roadmap", "Feature Backlog", "Sprint Planning", "Rockets"

3. **infrastructure** - Projects related to DevOps, systems, deployment, technical infrastructure
   - Examples: "DevOps Force", "Infrastructure", "Deployment Pipeline"

4. **operations** - Projects related to business operations, admin work, organizational tasks
   - Examples: "Operations Board", "Admin Tasks", "Business Planning"

5. **other** - Projects that don't clearly fit the above categories

## Projects to Classify

{{#each projects}}
- **Project #{{number}}**: {{title}}
  {{#if description}}Description: {{description}}{{/if}}
{{/each}}

## Instructions

For each project:
1. Read the title and description carefully
2. Determine which category best describes the project's purpose
3. Provide brief reasoning for your classification
4. If uncertain, choose "other"

Return your classifications in JSON format as specified in the output schema.

Graph