/SKILL.md
# Tattoo Color Analyzer Skill ## Overview AI-powered tattoo analysis tool for laser removal difficulty assessment. Developed by Think Again Tattoo Removal. ## MCP Server This tool is available as an MCP server for Claude integration. ### Setup ```json { "mcpServers": { "tattoo-analyzer": { "command": "python", "args": ["-m", "src.mcp_server"], "cwd": "/path/to/tattoo-color-analyzer" } } } ``` ### Available Tools #### analyze_tat
npx skillsauth add mebsites88s/tattoo-color-analyzer-v2-ai tattoo-color-analyzer-v2-aiInstall 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-powered tattoo analysis tool for laser removal difficulty assessment. Developed by Think Again Tattoo Removal.
This tool is available as an MCP server for Claude integration.
{
"mcpServers": {
"tattoo-analyzer": {
"command": "python",
"args": ["-m", "src.mcp_server"],
"cwd": "/path/to/tattoo-color-analyzer"
}
}
}
Analyze a tattoo image for removal difficulty.
Parameters:
image_path (string): Path to image fileimage_base64 (string): Base64-encoded image (alternative)fitzpatrick_type (int, 1-6): Skin typen_colors (int, 3-15): Colors to extractuse_ai_segmentation (bool): Use SAM segmentationuse_ai_prediction (bool): Use neural network predictionReturns:
Get removal difficulty for specific ink color.
Parameters:
color (string): black, blue, green, turquoise, red, yellow, white, purple, brownfitzpatrick_type (int, 1-6): Skin typeReturns:
Estimate sessions for color combination.
Parameters:
colors (object): Color percentages, e.g. {"black": 50, "blue": 30}fitzpatrick_type (int, 1-6): Skin typeReturns:
User: Analyze this tattoo image for removal difficulty
Claude: [calls analyze_tattoo with image]
The analysis shows:
- Dominant colors: Black (45%), Blue (30%), Green (25%)
- AI Segmentation confidence: 0.92
- Predicted sessions: 12-18
- Prediction confidence: 0.78
- Resistant colors: Blue, Green
The green and blue inks will require 694nm or 755nm wavelengths...
User: How hard is it to remove green tattoo ink?
Claude: [calls get_color_difficulty with color="green"]
Green ink has a difficulty score of 8.0/10 (Complex). It requires
approximately 2x the sessions of black ink and responds best to
694nm or 755nm wavelengths...
| Feature | Technology | Purpose | |---------|------------|---------| | Segmentation | Meta SAM | Automatic tattoo detection | | Prediction | PyTorch NN | Session estimation | | Confidence | MC Dropout | Uncertainty quantification |
Think Again Tattoo Removal
https://thinkagaintattooremoval.com
Austin, TX | +1 888-985-5399
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.