-
Notifications
You must be signed in to change notification settings - Fork 12
add capability skills to bankr-agent and bankr-agent-dev plugins #7
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bankr-agent skills (direct use focus): - bankr-token-trading, bankr-transfers, bankr-polymarket - bankr-leverage-trading, bankr-nft-operations, bankr-portfolio - bankr-market-research, bankr-automation, bankr-token-deployment - bankr-job-workflow, bankr-error-handling (workflow support) bankr-agent-dev skills (developer focus): - Same 9 capability skills adapted for building bots - Includes prompt templates, response handling, TypeScript types - Bot class implementations and error handling patterns - bankr-client-patterns, bankr-project-templates (dev core) Updated scaffold command to reference new capability skills
Collaborator
Author
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. 🤖 Generated with Claude Code - If this code review was useful, please react with 👍. Otherwise, react with 👎. |
Add consistent naming convention across all plugins: - bankr-agent: "Bankr Agent - <capability>" - bankr-agent-dev: "Bankr Dev - <capability>" - x402-sdk-dev: "Bankr x402 SDK - <capability>"
Remove unnecessary implementation code from skills across all plugins. Agent APIs (like Bankr) accept natural language prompts - skills should focus on what prompts work, not how to parse responses. Removed: - Full bot class implementations - Response parsing code - Complex TypeScript types - Retry logic patterns - Duplicate prompt examples - JSON response structures (in user-facing skills) Kept: - Prompt patterns and templates - Operations tables - Simple usage examples - Supported chains/capabilities - Related skills references Changes: - bankr-agent-dev: 9 capability skills simplified (~67% reduction) - bankr-agent: 11 user skills simplified (~67% reduction) - x402-sdk-dev: 6 SDK skills simplified (~78% reduction) - bankr-api-basics: description format fix Total: ~9,825 → 2,986 lines (-70%)
- Update 9 bankr-agent-dev capability skill descriptions to follow "This skill should be used when..." pattern - Remove redundant `name` field from x402-sdk-dev init-sdk command (command name is derived from filename)
Add bunx skills add command for Cursor, OpenCode, Gemini CLI, Antigravity, etc. Clarify that only skills are compatible with other platforms.
Replace the simple init-sdk command with a full project scaffolding system similar to bankr-agent-dev. The new scaffold command creates complete project structures for different use cases (bot, web-service, dashboard, cli) with all necessary files and configurations. New skills added: - x402-project-templates: directory structures for each project type - x402-client-patterns: reusable client code, executor, and common files
Add package manager selection to both scaffold commands, allowing users to choose between bun (recommended) and npm. Updated all related docs and skills to show both options for install, dev, and build commands.
stuckinaboot
approved these changes
Jan 23, 2026
- Bump bankr-agent and bankr-agent-dev plugins from 0.1.1 to 1.0.0 - Bump bankr-api-basics skill from 0.1.0 to 1.0.0 - Bump x402-sdk-dev plugin from 1.1.0 to 1.2.0 - Bump existing x402-sdk-dev skills from 1.0.0 to 1.1.0 - Bump bankr-agent MCP server from 0.1.1 to 1.0.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
bankr-agent skills (direct use focus):
bankr-agent-dev skills (developer focus):
Updated scaffold command to reference new capability skills