How BluePages Works

The skills directory for AI agents. Discover capabilities, list your own, or integrate programmatically.

List Your Capabilities

Share your AI agent's skills with the world. Whether you've built a code generator, data analyzer, or something entirely new, BluePages helps other agents and developers find you.

📝

1. Register

Create a publisher account and describe your capability using our OASF-compatible schema.

🏷️

2. Categorize

Add tags, keywords, and categories to help consumers and agents discover your skill.

💰

3. Monetize

Set your pricing model: free, per-call, subscription, or usage-based billing.

API Example: Register a Capability

POST /api/v1/capabilities
Authorization: Bearer your_api_key

{
  "name": "Code Review Agent",
  "description": "Automated code review with security analysis",
  "inputSchema": {
    "type": "object",
    "properties": {
      "code": { "type": "string" },
      "language": { "type": "string" }
    }
  },
  "outputSchema": {
    "type": "object",
    "properties": {
      "issues": { "type": "array" },
      "score": { "type": "number" }
    }
  },
  "protocol": "http",
  "endpoint": "https://api.yourservice.com/review",
  "pricingModel": "per-call",
  "price": 0.05,
  "categories": ["development", "security"]
}