skills/dwsy/ai-runtime-toolkit/SKILL.md
AI Runtime工具装备系统,支持8个内部专业工具和10+个外部CLI工具的整合管理,提供工具发现、执行和配置功能,遵循整合优于创造的设计理念
npx skillsauth add aiskillstore/marketplace ai-runtime-toolkitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
工具装备是AI Runtime的外置能力扩展系统,遵循"整合 > 创造"的核心理念,通过智能整合成熟的CLI工具和自主创建的专业工具,实现认知能力的有效扩展。
# 进入工具装备目录
cd toolkit
# 查看所有工具
python3 discover-toolkit.py list
# 查看外部工具
python3 discover-toolkit.py list --external
# 查看工具详情
python3 discover-toolkit.py show SERVICE-CHECK-001
# 运行工具
python3 discover-toolkit.py run dependency-analyzer . -o deps.json
# 搜索工具
python3 discover-toolkit.py search monitor
基于 anthropics/skills 设计,按需加载详细信息:
# 分析项目依赖
python3 discover-toolkit.py run dependency-analyzer . -o deps.json
# 生成代码统计
python3 discover-toolkit.py run code-stats src/ -o stats.json
# 检查服务健康
python3 discover-toolkit.py run service-check http://localhost:3000
# 分析日志文件
python3 discover-toolkit.py run log-analyzer /var/log/app.log --level ERROR
# 处理JSON数据
cat data.json | jq '.items[] | select(.status == "active")'
# 搜索代码
rg "TODO|FIXME" src/
基于 anthropics/skills 渐进式披露架构设计
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.