Use when searching SUI documentation, querying API references, checking tool versions, or finding integration examples. Triggers on documentation lookup, API usage questions, or version compatibility checks.
From sui-dev-agentsnpx claudepluginhub first-mover-tw/sui-dev-agents --plugin sui-dev-agentsThis skill uses the workspace's default tool permissions.
references/examples.mdreferences/reference.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Centralized service for querying latest SUI documentation, GitHub examples, and version information.
This skill provides a unified interface for all other SUI skills to query:
Key Principle: Other skills don't query directly - they call this skill with standardized parameters.
{
type: "docs",
target: "sui-core" | "walrus" | "zklogin" | "deepbook",
query: "specific question or topic",
options: { use_cache: true, max_results: 5 }
}
{
type: "github",
target: "sui-core" | "walrus",
query: "search query",
options: { include_examples: true, include_issues: false }
}
{
type: "version",
target: "sui"
}
Called by all other skills to query latest documentation:
const info = await sui_docs_query({
type: "docs",
target: "kiosk",
query: "Transfer policy implementation"
});
Cache duration: 1 hour for docs, 15 minutes for GitHub.
❌ Querying with vague questions
❌ Not using cached results
use_cache: true for repeated queries❌ Querying deprecated targets
type: "version" before querying docs❌ Skipping GitHub examples
include_examples: true for implementation queries❌ Not specifying target correctly
❌ Ignoring version compatibility
❌ Over-querying during development
See reference.md for complete API and examples.md for integration patterns.