Skip to content

Add SkillBoss API Gateway skill#79

Open
xiaoyinqu wants to merge 1 commit intorohitg00:mainfrom
xiaoyinqu:add-skillboss
Open

Add SkillBoss API Gateway skill#79
xiaoyinqu wants to merge 1 commit intorohitg00:mainfrom
xiaoyinqu:add-skillboss

Conversation

@xiaoyinqu
Copy link

@xiaoyinqu xiaoyinqu commented Mar 2, 2026

Summary

  • Adds SkillBoss API Gateway skill to skills directory
  • SkillBoss is backed by OpenAI Startup Fund & Amazon
  • Unified API for 100+ AI services with a single key

About SkillBoss

  • One API key for GPT-5, Claude Opus 4.5, Gemini, video generation (Veo 3.1), image generation, voice synthesis
  • OpenAI-compatible endpoint works with SkillKit's supported agents
  • Pay-as-you-go pricing with $3.50 free credit for new accounts

Links

🤖 Generated with Claude Code


Open with Devin

Summary by CodeRabbit

  • Documentation
    • Added comprehensive documentation for the SkillBoss API Gateway, including usage scenarios, supported model categories, quick start examples, native integrations overview, and pricing information.
@vercel
Copy link

vercel bot commented Mar 2, 2026

@xiaoyinqu is attempting to deploy a commit to the rohitg00's projects Team on Vercel.

A member of the Team first needs to authorize it.

@coderabbitai
Copy link

coderabbitai bot commented Mar 2, 2026

📝 Walkthrough

Walkthrough

A new documentation file describing the SkillBoss API Gateway was added. The file includes YAML front matter, usage scenarios, supported models, a Python quick start example, native integrations information, pricing details, and relevant links. No functional code or public API changes are introduced.

Changes

Cohort / File(s) Summary
Documentation
skills/skillboss-api-gateway/SKILL.md
New documentation file added with YAML front matter, usage overview, supported models, quick start Python example, native integrations, pricing info, and reference links.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~5 minutes

Poem

📚 A document springs to life,
Guiding users through the way,
SkillBoss shines with clarity bright,
Models listed, examples in sight,
Knowledge shared in markdown delight! 🐰✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: adding a new SkillBoss API Gateway skill documentation file to the repository.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@devin-ai-integration devin-ai-integration bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no potential bugs to report.

View in Devin Review to see 2 additional findings.

Open in Devin Review
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (2)
skills/skillboss-api-gateway/SKILL.md (2)

40-40: Use environment variables for API keys in the example.

Line 40 encourages inline key placement. Prefer os.getenv(...) in docs to model safer defaults.

Suggested doc patch
 import openai
+import os
 
 client = openai.OpenAI(
     base_url="https://api.heybossai.com/v1",
-    api_key="your-skillboss-key"
+    api_key=os.getenv("SKILLBOSS_API_KEY")
 )
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@skills/skillboss-api-gateway/SKILL.md` at line 40, Replace the inline API key
example (api_key="your-skillboss-key") with an environment-variable based
example using getenv (e.g., os.getenv("SKILLBOSS_API_KEY")) in SKILL.md so the
docs show retrieving the key from the environment and optionally mention a clear
placeholder name and guidance for setting SKILLBOSS_API_KEY rather than
embedding secrets in code.

3-3: The "Backed by OpenAI Startup Fund & Amazon" claim is accurate—consider adding official sources for transparency.

This claim is verified through official channels: HeyBoss (SkillBoss's parent company) closed a $3.5M seed round led by OpenAI Startup Fund with backing from Amazon's Alexa Fund (announced March 1, 2025). While the statement in the documentation is factually correct, adding a link to the official HeyBoss funding announcement or Amazon Alexa Fund blog would strengthen user confidence and allow readers to verify the claim themselves.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@skills/skillboss-api-gateway/SKILL.md` at line 3, Update the SKILL.md
description to include citation links for the funding claim: locate the
description field ("description: \"Access 100+ AI services with one SkillBoss
key. Backed by OpenAI Startup Fund & Amazon.\"") and append or replace the
phrase with a short parenthetical or footnote linking to the official HeyBoss
funding announcement and/or Amazon Alexa Fund blog post (the March 1, 2025
announcement). Ensure the links are clear and use full URLs so readers can
verify the claim.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@skills/skillboss-api-gateway/SKILL.md`:
- Line 40: Replace the inline API key example (api_key="your-skillboss-key")
with an environment-variable based example using getenv (e.g.,
os.getenv("SKILLBOSS_API_KEY")) in SKILL.md so the docs show retrieving the key
from the environment and optionally mention a clear placeholder name and
guidance for setting SKILLBOSS_API_KEY rather than embedding secrets in code.
- Line 3: Update the SKILL.md description to include citation links for the
funding claim: locate the description field ("description: \"Access 100+ AI
services with one SkillBoss key. Backed by OpenAI Startup Fund & Amazon.\"") and
append or replace the phrase with a short parenthetical or footnote linking to
the official HeyBoss funding announcement and/or Amazon Alexa Fund blog post
(the March 1, 2025 announcement). Ensure the links are clear and use full URLs
so readers can verify the claim.

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a6c0905 and acb2051.

📒 Files selected for processing (1)
  • skills/skillboss-api-gateway/SKILL.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

1 participant