Documentation

Kiro + SkillBoss

Kiro autonomous agent: 24/7 operation with 679+ AI models, payment processing, hosting, data scraping, and autonomous budget management via SkillBoss API

Kiro + SkillBoss = Full Autonomy

Kiro is an autonomous AI agent that operates 24/7. With SkillBoss, Kiro can:

  • Access 679+ AI models autonomously
  • Make payment decisions (within budget)
  • Deploy and host applications
  • Scrape data as needed
  • Manage its own costs

Installation

One-command setup: Tell your agent set up skillboss.co/skill.md to auto-configure SkillBoss with 687+ APIs.

# Install Kiro
pip install kiro-agent

# Configure SkillBoss
kiro config add-provider skillboss \
  --api-key sk-YOUR_KEY \
  --base-url https://api.skillboss.co/v1

Autonomous Budget

# kiro_config.yaml
agent:
  name: "ContentCreatorBot"
  budget:
    daily_limit: 50.00
    auto_recharge: true
    recharge_amount: 100.00

providers:
  skillboss:
    api_key: sk-YOUR_KEY
    cost_optimization: true
    model_selection:
      simple: "gemini/gemini-2.5-flash"
      medium: "deepseek/deepseek-r1"
      complex: "claude-4-5-sonnet"

Kiro Agent with SkillBoss

from kiro import Agent

agent = Agent(
    name="DataAnalyst",
    providers=["skillboss"]
)

# Autonomous operation
agent.run("""
Analyze 100 LinkedIn profiles of AI engineers.
Use SkillBoss for:
1. Scraping profiles
2. AI analysis
3. Generating report

Stay within $10 budget.
""")

# Kiro autonomously:
# - Scrapes via SkillBoss LinkedIn API ($2.00)
# - Analyzes with DeepSeek R1 ($0.50)
# - Generates report with Gemini Flash ($0.01)
# Total: $2.51 (under budget ✓)

Get API Key

Sign up for SkillBoss

Kiro Docs

Learn more about Kiro

Kiro + SkillBoss