ワンクリックで
ut-init
Initialize UltraThink capabilities in the current project directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Initialize UltraThink capabilities in the current project directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Unified design foundations — design system architecture, tokens, component specs, visual principles, creative vision, figma integration, plus brand design system loader (66 real brands via DESIGN.md). Absorbs design, design-system, design-systems, design-principles, design-router, creative-vision, figma, design-md.
Render, summarize, and present markdown documents and structured content in multiple output modes
Ultra UI skill - combines Google's DESIGN.md spec (machine-readable design tokens) with the ui-ux-pro-max knowledge base (91 styles, 161 palettes, 73 font pairings, 161 products, 104 UX guidelines, 25 chart types). Generates lint-clean DESIGN.md files, validates token references and WCAG contrast, exports Tailwind/DTCG tokens, and diffs design systems version-over-version.
Org-Bench Google-bipartite winning mechanism — the 4-section design-doc gate that every non-trivial change passes through. Use when the Director defines new work, when an Integrator reviews a lane (code/quality/devops), when the Director approves, or when a Worker is about to start coding and needs the spec. Tools live in the `design-doc` MCP server. Triggers on phrases like "design doc", "design review", "approve revision", "lane verdict", "what does this issue require", "is this approved yet".
Web scraping with anti-bot bypass (Cloudflare Turnstile etc.), stealth headless browsing, adaptive selectors, and concurrent crawls. Use when the user asks to scrape, crawl, or extract data from websites; the built-in WebFetch fails; the target has anti-bot protections; or the work needs JavaScript rendering. Prefers the registered MCP tools (mcp__scrapling__*) over raw Python so token cost stays low.
SEO for web apps — metadata, structured data, sitemaps, robots.txt, Core Web Vitals, E-E-A-T. Auto-loads framework-specific references.
| name | ut-init |
| description | Initialize UltraThink capabilities in the current project directory |
| disable-model-invocation | true |
| allowed-tools | Bash |
| argument-hint | [--global | --local] |
Set up UltraThink in the current project or globally.
Run the global installer:
"${ULTRATHINK_DIR:-$(cd "$(dirname "$0")/../.." && pwd)}/scripts/install.sh"
This symlinks skills, references, agents, hooks, and runner templates into ~/.claude/, ~/.codex/, and ~/.ultrathink/.
Remove UltraThink from global config:
"${ULTRATHINK_DIR:-$(cd "$(dirname "$0")/../.." && pwd)}/scripts/install.sh" --uninstall
Symlink UltraThink into the current project's .claude/ directory:
ULTRA="${ULTRATHINK_DIR:-$HOME/Documents/GitHub/InuVerse/ai-agents/ultrathink}"
PROJECT_DIR="$(pwd)"
# Create .claude directory if needed
mkdir -p "$PROJECT_DIR/.claude"
# Symlink skills
if [ ! -e "$PROJECT_DIR/.claude/skills" ]; then
ln -s "$ULTRA/.claude/skills" "$PROJECT_DIR/.claude/skills"
echo "Linked skills"
else
echo "Skills already exist — skipping"
fi
# Symlink rules
if [ ! -e "$PROJECT_DIR/.claude/rules" ]; then
ln -s "$ULTRA/.claude/rules" "$PROJECT_DIR/.claude/rules"
echo "Linked rules"
else
echo "Rules already exist — skipping"
fi
# Symlink agents
if [ ! -e "$PROJECT_DIR/.claude/agents" ]; then
ln -s "$ULTRA/.claude/agents" "$PROJECT_DIR/.claude/agents"
echo "Linked agents"
else
echo "Agents already exist — skipping"
fi
# Copy .ckignore if not present
if [ ! -f "$PROJECT_DIR/.ckignore" ]; then
cp "$ULTRA/.ckignore" "$PROJECT_DIR/.ckignore"
echo "Copied .ckignore"
fi
echo ""
echo "UltraThink initialized in $PROJECT_DIR"
echo "Skills, rules, and agents are now available in this project."
After running, confirm what was linked and remind the user that skills are now available via /ut-skills.