Agent skill
start-new-sdk-project
Use when you have an OpenAPI spec and want to generate an SDK, or asking "how do I get started with Speakeasy"
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/start-new-sdk-project
SKILL.md
start-new-sdk-project
Use speakeasy quickstart to initialize a new project with a workflow configuration.
Prerequisites
For non-interactive environments (CI/CD, AI agents), set:
export SPEAKEASY_API_KEY="<your-api-key>"
See configure-authentication skill for details.
Command
speakeasy quickstart -s <path-to-openapi-spec> -t <target-language>
Supported Targets
| Language | Target Flag |
|---|---|
| TypeScript | typescript |
| Python | python |
| Go | go |
| Java | java |
| C# | csharp |
| PHP | php |
| Ruby | ruby |
| Kotlin | kotlin |
| Terraform | terraform |
Example
# Initialize TypeScript SDK project
speakeasy quickstart -s ./api/openapi.yaml -t typescript
# With custom output directory
speakeasy quickstart -s ./api/openapi.yaml -t python -o ./sdks/python
What It Creates
.speakeasy/
└── workflow.yaml # Workflow configuration
Next Steps After Quickstart
- Run
speakeasy runto generate the SDK - Review the generated SDK in the output directory
- Add more targets to workflow.yaml for multi-language support
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?