-
Notifications
You must be signed in to change notification settings - Fork 89
Add feature-readiness-checklist skill #1599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- Convert kebab-case tags to PascalCase (user-organizations -> UserOrganizations) - Convert lowercase tags to PascalCase (invitations -> Invitations, cli -> CLI) - Convert space-separated tags to PascalCase (API Keys -> APIKeys) - Convert singular tags to plural for resources (Credential -> Credentials) - Standardize all SubAgent relation tags (Sub Agent Relations -> SubAgentRelations) - Fix inconsistent Agent vs Agents usage (now all use Agents) - Standardize Full Agent/Project tags (Full Agent -> FullAgent) - Standardize Third-Party MCP Servers to ThirdPartyMCPServers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Audited all evals domain route files and confirmed all tags already follow PascalCase convention (Evaluations, Workflows). No code changes required. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add agents-api/scripts/export-openapi-spec.ts that generates a static OpenAPI 3.1.0 spec from all domain routes. Script creates minimal OpenAPIHono app, mounts all routes, and writes sorted JSON to openapi-spec.json. Added 'export-openapi' npm script. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Change fumadocs-openapi input from remote URLs to local file read. Now reads from ../agents-api/openapi-spec.json using fs.readFileSync(). Uses single 'agents-api' key for unified spec instead of separate 'index' and 'run-api' keys. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add 'Validate OpenAPI Spec' step to CI workflow that regenerates the spec and fails if it differs from committed version. Provides clear error message with fix instructions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add pnpm docs:regenerate to root package.json that runs export-openapi in agents-api then generate-openapi in agents-docs. Document workflow in AGENTS.md under 'API Reference Documentation Workflow' section. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7/8 stories complete. US-005 blocked on script execution (platform mismatch in current environment). Added instructions for completing US-005 on a dev machine. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Generated openapi-spec.json containing the full API reference for all three domains (/manage, /run, /evals) with 113 endpoints and 189 schemas. This file enables: - Offline builds for agents-docs - CI validation to catch API drift - Local development without network requests Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Adds a skill to systematically verify feature readiness before merging. Gathers context about change type, runs automated checks (typecheck, lint, format, build, tests), verifies manual checklist items, and reports status with clear verdict. Triggers: is this ready, feature complete, ready to merge, release checklist, verify feature, pre-PR check Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Summary
Triggers
is this ready, feature complete, ready to merge, release checklist, verify feature, pre-PR check
Test plan
Generated with Claude Code