en un clic
ut-init
Initialize UltraThink capabilities in the current project directory
Menu
Initialize UltraThink capabilities in the current project directory
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.
Advanced UI/UX design intelligence — InuVerse edition. 84 styles, 160 palettes, 73 font pairings, 161 product types, 98 UX guidelines, 25 chart types across 16 stacks. Absorbs ui, ui-design, ui-styling, ui-ux-pro, ui-design-pipeline, stitch, web-design-guidelines. Routes all UI structure/visual/interaction work.
Get Shit Done — spec-driven development pipeline with XML-structured plans, wave-based parallel execution with fresh-context agents, goal-backward verification, and lightweight ad-hoc quick mode with composable flags. Single skill containing plan/execute/verify/quick modes as sub-workflows.
AI agent architecture, tool use, memory systems, multi-agent orchestration, and safety patterns
| 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.