
Ultrathink
Invoke a named agent ritual that prints colorful ANSI art of the word ultrathink when the user says ultrathink or uses /ultrathink.
Overview
Ultrathink is an agent skill for the Build phase that displays colorful ANSI art of the word ultrathink when the user explicitly invokes ultrathink or /ultrathink.
Install
npx skills add https://github.com/intellectronica/agent-skills --skill ultrathinkWhat is this skill?
- Triggers only on user saying "ultrathink" or invoking /ultrathink
- Runs a single Bash `printf` with multi-color ANSI escape codes
- Displays stylized ASCII art spelling ULTRATHINK
- Explicit instruction: no other output or commentary when invoked
- Zero configuration beyond having shell access in the agent
- Single Bash printf command with no additional output allowed
Adoption & trust: 1.7k installs on skills.sh; 270 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want a consistent, no-nonsense visual ritual when you trigger ultrathink instead of the agent improvising a long reply.
Who is it for?
Developers who use ultrathink as a deliberate pause or meme command and want agents to obey a fixed display script.
Skip if: Anyone expecting deep reasoning, planning, or codebase analysis from an ultrathink invocation.
When should I use this skill?
The user says "ultrathink" or invokes /ultrathink.
What do I get? / Deliverables
The terminal shows only the prescribed multicolor ultrathink ANSI art with no added agent commentary.
- Terminal ANSI art display of the word ultrathink
Recommended Skills
Journey fit
Build / agent-tooling is the canonical shelf for custom slash commands and lightweight agent personality hooks in the coding environment. Agent-tooling covers optional skills that extend how the agent responds to explicit user invocations, not product features.
How it compares
A display-only meta skill, not a brainstorming or planning workflow.
Common Questions / FAQ
Who is ultrathink for?
Solo builders using bash-capable coding agents who have adopted ultrathink as an explicit slash-style command and want predictable ANSI art output.
When should I use ultrathink?
Only when you intentionally say ultrathink or /ultrathink during a Build session as a lightweight agent-tooling easter egg—not as a substitute for planning skills.
Is ultrathink safe to install?
It runs a local printf via Bash with no network or git writes; review the Security Audits panel on this Prism page before enabling any shell-running skill.
SKILL.md
READMESKILL.md - Ultrathink
# Ultrathink When this skill is invoked, run this Bash command to display colourful ANSI art: ```bash printf '\n \033[1;31m╦ ╦\033[1;33m╦ \033[1;32m╔╦╗\033[1;36m╦═╗\033[1;34m╔═╗\033[1;35m╔╦╗\033[1;31m╦ ╦\033[1;33m╦\033[1;32m╔╗╔\033[1;36m╦╔═\033[0m\n \033[1;31m║ ║\033[1;33m║ \033[1;32m║ \033[1;36m╠╦╝\033[1;34m╠═╣\033[1;35m ║ \033[1;31m╠═╣\033[1;33m║\033[1;32m║║║\033[1;36m╠╩╗\033[0m\n \033[1;31m╚═╝\033[1;33m╩═╝\033[1;32m ╩ \033[1;36m╩╚═\033[1;34m╩ ╩\033[1;35m ╩ \033[1;31m╩ ╩\033[1;33m╩\033[1;32m╝╚╝\033[1;36m╩ ╩\033[0m\n\n' ``` Do not add any other output or commentary.