원클릭으로
skill-generator
Meta-skill that generates new skills based on user requirements. Enables self-evolution.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Meta-skill that generates new skills based on user requirements. Enables self-evolution.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage address aliases and transfer history. Auto-create contact names from transfer memos, track transfer counts, and quickly access frequently-used addresses.
Analyze address behavior patterns from transaction history. Detect anomalies, identify activity patterns, and alert on suspicious changes.
Check TRON addresses for security risks using TronScan labels, blacklists, scam detection, and fraud transaction history before interacting.
Scan wallet for token approvals and detect risky unlimited allowances. Critical for security.
Analyze energy costs for TRON transactions and generate rental proposals to save on fees. Compares burning TRX vs renting energy from platforms.
Analyze TRON blockchain transaction errors using AI to provide concise, user-friendly explanations with root causes and actionable solutions.
| name | skill-generator |
| description | Meta-skill that generates new skills based on user requirements. Enables self-evolution. |
This is a meta-skill that allows the AI agent to evolve itself by creating new skills when needed!
Use when:
User: "我想查询NFT的交易记录"
Agent: 🤔 Analyzing request...
Current skills: ❌ No NFT skill found
→ Triggering Skill Generator
Agent generates planning:
📋 New Skill Plan: "nft-transaction-tracker"
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Purpose: Track NFT transactions and ownership history
Key Features:
1. Query NFT transfer events
2. Get NFT ownership history
3. Calculate NFT floor price
4. Detect wash trading
Data Sources:
- TronScan NFT API
- Marketplace APIs (ApeNFT, etc.)
Implementation:
- SKILL.md: Documentation
- scripts/track_nft.py: Core logic
- Integration: MCP tool wrapper
Estimated Complexity: Medium (3-4 hours)
❓ Approve this plan? (yes/no)
User: yes
Agent: ✅ Generating skill...
[====================] 100%
Created files:
✓ skills/nft-transaction-tracker/SKILL.md
✓ skills/nft-transaction-tracker/scripts/track_nft.py
✓ Updated src/tool_wrappers.py
✓ Registered in src/main.py
🎉 New skill ready!
Agent: 🧪 Testing new skill...
✓ Basic functionality works
✓ API connections successful
💾 Save this skill permanently? (yes/no)
User: yes
Agent: ✅ Skill saved and activated!
You can now use: get_nft_transactions()
graph TD
A[User Request] --> B{Existing Skills?}
B -->|Yes| C[Use Existing]
B -->|No| D[Generate Planning]
D --> E[User Review]
E -->|Reject| F[Refine Plan]
E -->|Approve| G[Generate Code]
F --> D
G --> H[Test Skill]
H --> I{Works?}
I -->|No| J[Debug & Fix]
I -->|Yes| K[User Review Code]
J --> H
K -->|Save| L[Activate Skill]
K -->|Discard| M[End]
L --> N[Available Forever]
Each generated skill follows standard format:
skills/[skill-name]/
├── SKILL.md # Auto-generated docs
├── scripts/
│ └── main.py # Core implementation
└── examples/ # Usage examples (optional)
User: "跟踪我的NFT交易"
→ Generates: nft-transaction-tracker
User: "分析流动性池的收益率"
→ Generates: liquidity-pool-analyzer
User: "当TRX价格跌破0.1时通知我"
→ Generates: price-alert-monitor
User: "批量给100个地址转账"
→ Generates: batch-transfer-executor
Uses structured planning:
Uses LLM to generate:
Automatically updates:
src/tool_wrappers.py - Adds wrapper functionsrc/main.py - Registers MCP tool"The best agent is one that can teach itself new tricks."
This skill generator embodies the principle of continuous evolution. Instead of being limited by pre-programmed capabilities, the agent can adapt to any blockchain task thrown at it!