{"skill":{"slug":"wellally-health-skills","displayName":"Wellally Health Skills","summary":"Create, manage, and share custom slash commands to extend Claude's capabilities with personalized, project-specific, or organization-wide health skills.","description":"> ## Documentation Index\n> Fetch the complete documentation index at: https://code.claude.com/docs/llms.txt\n> Use this file to discover all available pages before exploring further.\n\n# Extend Claude with skills\n\n> Create, manage, and share skills to extend Claude's capabilities in Claude Code. Includes custom slash commands.\n\nSkills extend what Claude can do. Create a `SKILL.md` file with instructions, and Claude adds it to its toolkit. Claude uses skills when relevant, or you can invoke one directly with `/skill-name`.\n\n<Note>\n  For built-in commands like `/help` and `/compact`, see [interactive mode](/en/interactive-mode#built-in-commands).\n\n  **Custom slash commands have been merged into skills.** A file at `.claude/commands/review.md` and a skill at `.claude/skills/review/SKILL.md` both create `/review` and work the same way. Your existing `.claude/commands/` files keep working. Skills add optional features: a directory for supporting files, frontmatter to [control whether you or Claude invokes them](#control-who-invokes-a-skill), and the ability for Claude to load them automatically when relevant.\n</Note>\n\nClaude Code skills follow the [Agent Skills](https://agentskills.io) open standard, which works across multiple AI tools. Claude Code extends the standard with additional features like [invocation control](#control-who-invokes-a-skill), [subagent execution](#run-skills-in-a-subagent), and [dynamic context injection](#inject-dynamic-context).\n\n## Getting started\n\n### Create your first skill\n\nThis example creates a skill that teaches Claude to explain code using visual diagrams and analogies. Since it uses default frontmatter, Claude can load it automatically when you ask how something works, or you can invoke it directly with `/explain-code`.\n\n<Steps>\n  <Step title=\"Create the skill directory\">\n    Create a directory for the skill in your personal skills folder. Personal skills are available across all your projects.\n\n    ```bash  theme={null}\n    mkdir -p ~/.claude/skills/explain-code\n    ```\n  </Step>\n\n  <Step title=\"Write SKILL.md\">\n    Every skill needs a `SKILL.md` file with two parts: YAML frontmatter (between `---` markers) that tells Claude when to use the skill, and markdown content with instructions Claude follows when the skill is invoked. The `name` field becomes the `/slash-command`, and the `description` helps Claude decide when to load it automatically.\n\n    Create `~/.claude/skills/explain-code/SKILL.md`:\n\n    ```yaml  theme={null}\n    ---\n    name: explain-code\n    description: Explains code with visual diagrams and analogies. Use when explaining how code works, teaching about a codebase, or when the user asks \"how does this work?\"\n    ---\n\n    When explaining code, always include:\n\n    1. **Start with an analogy**: Compare the code to something from everyday life\n    2. **Draw a diagram**: Use ASCII art to show the flow, structure, or relationships\n    3. **Walk through the code**: Explain step-by-step what happens\n    4. **Highlight a gotcha**: What's a common mistake or misconception?\n\n    Keep explanations conversational. For complex concepts, use multiple analogies.\n    ```\n  </Step>\n\n  <Step title=\"Test the skill\">\n    You can test it two ways:\n\n    **Let Claude invoke it automatically** by asking something that matches the description:\n\n    ```\n    How does this code work?\n    ```\n\n    **Or invoke it directly** with the skill name:\n\n    ```\n    /explain-code src/auth/login.ts\n    ```\n\n    Either way, Claude should include an analogy and ASCII diagram in its explanation.\n  </Step>\n</Steps>\n\n### Where skills live\n\nWhere you store a skill determines who can use it:\n\n| Location   | Path                                             | Applies to                     |\n| :--------- | :----------------------------------------------- | :----------------------------- |\n| Enterprise | See [managed settings](/en/iam#managed-settings) | All users in your organization |\n| Personal   | `~/.claude/skills/<skill-name>/SKILL.md`         | All your projects              |\n| Project    | `.claude/skills/<skill-name>/SKILL.md`           | This project only              |\n| Plugin     | `<plugin>/skills/<skill-name>/SKILL.md`          | Where plugin is enabled        |\n\nWhen skills share the same name across levels, higher-priority locations win: enterprise > personal > project. Plugin skills use a `plugin-name:skill-name` namespace, so they cannot conflict with other levels. If you have files in `.claude/commands/`, those work the same way, but if a skill and a command share the same name, the skill takes precedence.\n\n#### Automatic discovery from nested directories\n\nWhen you work with files in subdirectories, Claude Code automatically discovers skills from nested `.claude/skills/` directories. For example, if you're editing a file in `packages/frontend/`, Claude Code also looks for skills in `packages/frontend/.claude/skills/`. This supports monorepo setups where packages have their own skills.\n\nEach skill is a directory with `SKILL.md` as the entrypoint:\n\n```\nmy-skill/\n├── SKILL.md           # Main instructions (required)\n├── template.md        # Template for Claude to fill in\n├── examples/\n│   └── sample.md      # Example output showing expected format\n└── scripts/\n    └── validate.sh    # Script Claude can execute\n```\n\nThe `SKILL.md` contains the main instructions and is required. Other files are optional and let you build more powerful skills: templates for Claude to fill in, example outputs showing the expected format, scripts Claude can execute, or detailed reference documentation. Reference these files from your `SKILL.md` so Claude knows what they contain and when to load them. See [Add supporting files](#add-supporting-files) for more details.\n\n<Note>\n  Files in `.claude/commands/` still work and support the same [frontmatter](#frontmatter-reference). Skills are recommended since they support additional features like supporting files.\n</Note>\n\n## Configure skills\n\nSkills are configured through YAML frontmatter at the top of `SKILL.md` and the markdown content that follows.\n\n### Types of skill content\n\nSkill files can contain any instructions, but thinking about how you want to invoke them helps guide what to include:\n\n**Reference content** adds knowledge Claude applies to your current work. Conventions, patterns, style guides, domain knowledge. This content runs inline so Claude can use it alongside your conversation context.\n\n```yaml  theme={null}\n---\nname: api-conventions\ndescription: API design patterns for this codebase\n---\n\nWhen writing API endpoints:\n- Use RESTful naming conventions\n- Return consistent error formats\n- Include request validation\n```\n\n**Task content** gives Claude step-by-step instructions for a specific action, like deployments, commits, or code generation. These are often actions you want to invoke directly with `/skill-name` rather than letting Claude decide when to run them. Add `disable-model-invocation: true` to prevent Claude from triggering it automatically.\n\n```yaml  theme={null}\n---\nname: deploy\ndescription: Deploy the application to production\ncontext: fork\ndisable-model-invocation: true\n---\n\nDeploy the application:\n1. Run the test suite\n2. Build the application\n3. Push to the deployment target\n```\n\nYour `SKILL.md` can contain anything, but thinking through how you want the skill invoked (by you, by Claude, or both) and where you want it to run (inline or in a subagent) helps guide what to include. For complex skills, you can also [add supporting files](#add-supporting-files) to keep the main skill focused.\n\n### Frontmatter reference\n\nBeyond the markdown content, you can configure skill behavior using YAML frontmatter fields between `---` markers at the top of your `SKILL.md` file:\n\n```yaml  theme={null}\n---\nname: my-skill\ndescription: What this skill does\ndisable-model-invocation: true\nallowed-tools: Read, Grep\n---\n\nYour skill instructions here...\n```\n\nAll fields are optional. Only `description` is recommended so Claude knows when to use the skill.\n\n| Field                      | Required    | Description                                                                                                                                           |\n| :------------------------- | :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `name`                     | No          | Display name for the skill. If omitted, uses the directory name. Lowercase letters, numbers, and hyphens only (max 64 characters).                    |\n| `description`              | Recommended | What the skill does and when to use it. Claude uses this to decide when to apply the skill. If omitted, uses the first paragraph of markdown content. |\n| `argument-hint`            | No          | Hint shown during autocomplete to indicate expected arguments. Example: `[issue-number]` or `[filename] [format]`.                                    |\n| `disable-model-invocation` | No          | Set to `true` to prevent Claude from automatically loading this skill. Use for workflows you want to trigger manually with `/name`. Default: `false`. |\n| `user-invocable`           | No          | Set to `false` to hide from the `/` menu. Use for background knowledge users shouldn't invoke directly. Default: `true`.                              |\n| `allowed-tools`            | No          | Tools Claude can use without asking permission when this skill is active.                                                                             |\n| `model`                    | No          | Model to use when this skill is active.                                                                                                               |\n| `context`                  | No          | Set to `fork` to run in a forked subagent context.                                                                                                    |\n| `agent`                    | No          | Which subagent type to use when `context: fork` is set.                                                                                               |\n| `hooks`                    | No          | Hooks scoped to this skill's lifecycle. See [Hooks in skills and agents](/en/hooks#hooks-in-skills-and-agents) for configuration format.              |\n\n#### Available string substitutions\n\nSkills support string substitution for dynamic values in the skill content:\n\n| Variable               | Description                                                                                                                                  |\n| :--------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- |\n| `$ARGUMENTS`           | All arguments passed when invoking the skill. If `$ARGUMENTS` is not present in the content, arguments are appended as `ARGUMENTS: <value>`. |\n| `$ARGUMENTS[N]`        | Access a specific argument by 0-based index, such as `$ARGUMENTS[0]` for the first argument.                                                 |\n| `$N`                   | Shorthand for `$ARGUMENTS[N]`, such as `$0` for the first argument or `$1` for the second.                                                   |\n| `${CLAUDE_SESSION_ID}` | The current session ID. Useful for logging, creating session-specific files, or correlating skill output with sessions.                      |\n\n**Example using substitutions:**\n\n```yaml  theme={null}\n---\nname: session-logger\ndescription: Log activity for this session\n---\n\nLog the following to logs/${CLAUDE_SESSION_ID}.log:\n\n$ARGUMENTS\n```\n\n### Add supporting files\n\nSkills can include multiple files in their directory. This keeps `SKILL.md` focused on the essentials while letting Claude access detailed reference material only when needed. Large reference docs, API specifications, or example collections don't need to load into context every time the skill runs.\n\n```\nmy-skill/\n├── SKILL.md (required - overview and navigation)\n├── reference.md (detailed API docs - loaded when needed)\n├── examples.md (usage examples - loaded when needed)\n└── scripts/\n    └── helper.py (utility script - executed, not loaded)\n```\n\nReference supporting files from `SKILL.md` so Claude knows what each file contains and when to load it:\n\n```markdown  theme={null}\n## Additional resources\n\n- For complete API details, see [reference.md](reference.md)\n- For usage examples, see [examples.md](examples.md)\n```\n\n<Tip>Keep `SKILL.md` under 500 lines. Move detailed reference material to separate files.</Tip>\n\n### Control who invokes a skill\n\nBy default, both you and Claude can invoke any skill. You can type `/skill-name` to invoke it directly, and Claude can load it automatically when relevant to your conversation. Two frontmatter fields let you restrict this:\n\n* **`disable-model-invocation: true`**: Only you can invoke the skill. Use this for workflows with side effects or that you want to control timing, like `/commit`, `/deploy`, or `/send-slack-message`. You don't want Claude deciding to deploy because your code looks ready.\n\n* **`user-invocable: false`**: Only Claude can invoke the skill. Use this for background knowledge that isn't actionable as a command. A `legacy-system-context` skill explains how an old system works. Claude should know this when relevant, but `/legacy-system-context` isn't a meaningful action for users to take.\n\nThis example creates a deploy skill that only you can trigger. The `disable-model-invocation: true` field prevents Claude from running it automatically:\n\n```yaml  theme={null}\n---\nname: deploy\ndescription: Deploy the application to production\ndisable-model-invocation: true\n---\n\nDeploy $ARGUMENTS to production:\n\n1. Run the test suite\n2. Build the application\n3. Push to the deployment target\n4. Verify the deployment succeeded\n```\n\nHere's how the two fields affect invocation and context loading:\n\n| Frontmatter                      | You can invoke | Claude can invoke | When loaded into context                                     |\n| :------------------------------- | :------------- | :---------------- | :----------------------------------------------------------- |\n| (default)                        | Yes            | Yes               | Description always in context, full skill loads when invoked |\n| `disable-model-invocation: true` | Yes            | No                | Description not in context, full skill loads when you invoke |\n| `user-invocable: false`          | No             | Yes               | Description always in context, full skill loads when invoked |\n\n<Note>\n  In a regular session, skill descriptions are loaded into context so Claude knows what's available, but full skill content only loads when invoked. [Subagents with preloaded skills](/en/sub-agents#preload-skills-into-subagents) work differently: the full skill content is injected at startup.\n</Note>\n\n### Restrict tool access\n\nUse the `allowed-tools` field to limit which tools Claude can use when a skill is active. This skill creates a read-only mode where Claude can explore files but not modify them:\n\n```yaml  theme={null}\n---\nname: safe-reader\ndescription: Read files without making changes\nallowed-tools: Read, Grep, Glob\n---\n```\n\n### Pass arguments to skills\n\nBoth you and Claude can pass arguments when invoking a skill. Arguments are available via the `$ARGUMENTS` placeholder.\n\nThis skill fixes a GitHub issue by number. The `$ARGUMENTS` placeholder gets replaced with whatever follows the skill name:\n\n```yaml  theme={null}\n---\nname: fix-issue\ndescription: Fix a GitHub issue\ndisable-model-invocation: true\n---\n\nFix GitHub issue $ARGUMENTS following our coding standards.\n\n1. Read the issue description\n2. Understand the requirements\n3. Implement the fix\n4. Write tests\n5. Create a commit\n```\n\nWhen you run `/fix-issue 123`, Claude receives \"Fix GitHub issue 123 following our coding standards...\"\n\nIf you invoke a skill with arguments but the skill doesn't include `$ARGUMENTS`, Claude Code appends `ARGUMENTS: <your input>` to the end of the skill content so Claude still sees what you typed.\n\nTo access individual arguments by position, use `$ARGUMENTS[N]` or the shorter `$N`:\n\n```yaml  theme={null}\n---\nname: migrate-component\ndescription: Migrate a component from one framework to another\n---\n\nMigrate the $ARGUMENTS[0] component from $ARGUMENTS[1] to $ARGUMENTS[2].\nPreserve all existing behavior and tests.\n```\n\nRunning `/migrate-component SearchBar React Vue` replaces `$ARGUMENTS[0]` with `SearchBar`, `$ARGUMENTS[1]` with `React`, and `$ARGUMENTS[2]` with `Vue`. The same skill using the `$N` shorthand:\n\n```yaml  theme={null}\n---\nname: migrate-component\ndescription: Migrate a component from one framework to another\n---\n\nMigrate the $0 component from $1 to $2.\nPreserve all existing behavior and tests.\n```\n\n## Advanced patterns\n\n### Inject dynamic context\n\nThe `!`command\\`\\` syntax runs shell commands before the skill content is sent to Claude. The command output replaces the placeholder, so Claude receives actual data, not the command itself.\n\nThis skill summarizes a pull request by fetching live PR data with the GitHub CLI. The `!`gh pr diff\\`\\` and other commands run first, and their output gets inserted into the prompt:\n\n```yaml  theme={null}\n---\nname: pr-summary\ndescription: Summarize changes in a pull request\ncontext: fork\nagent: Explore\nallowed-tools: Bash(gh *)\n---\n\n## Pull request context\n- PR diff: !`gh pr diff`\n- PR comments: !`gh pr view --comments`\n- Changed files: !`gh pr diff --name-only`\n\n## Your task\nSummarize this pull request...\n```\n\nWhen this skill runs:\n\n1. Each `!`command\\`\\` executes immediately (before Claude sees anything)\n2. The output replaces the placeholder in the skill content\n3. Claude receives the fully-rendered prompt with actual PR data\n\nThis is preprocessing, not something Claude executes. Claude only sees the final result.\n\n<Tip>\n  To enable [extended thinking](/en/common-workflows#use-extended-thinking-thinking-mode) in a skill, include the word \"ultrathink\" anywhere in your skill content.\n</Tip>\n\n### Run skills in a subagent\n\nAdd `context: fork` to your frontmatter when you want a skill to run in isolation. The skill content becomes the prompt that drives the subagent. It won't have access to your conversation history.\n\n<Warning>\n  `context: fork` only makes sense for skills with explicit instructions. If your skill contains guidelines like \"use these API conventions\" without a task, the subagent receives the guidelines but no actionable prompt, and returns without meaningful output.\n</Warning>\n\nSkills and [subagents](/en/sub-agents) work together in two directions:\n\n| Approach                     | System prompt                             | Task                        | Also loads                   |\n| :--------------------------- | :---------------------------------------- | :-------------------------- | :--------------------------- |\n| Skill with `context: fork`   | From agent type (`Explore`, `Plan`, etc.) | SKILL.md content            | CLAUDE.md                    |\n| Subagent with `skills` field | Subagent's markdown body                  | Claude's delegation message | Preloaded skills + CLAUDE.md |\n\nWith `context: fork`, you write the task in your skill and pick an agent type to execute it. For the inverse (defining a custom subagent that uses skills as reference material), see [Subagents](/en/sub-agents#preload-skills-into-subagents).\n\n#### Example: Research skill using Explore agent\n\nThis skill runs research in a forked Explore agent. The skill content becomes the task, and the agent provides read-only tools optimized for codebase exploration:\n\n```yaml  theme={null}\n---\nname: deep-research\ndescription: Research a topic thoroughly\ncontext: fork\nagent: Explore\n---\n\nResearch $ARGUMENTS thoroughly:\n\n1. Find relevant files using Glob and Grep\n2. Read and analyze the code\n3. Summarize findings with specific file references\n```\n\nWhen this skill runs:\n\n1. A new isolated context is created\n2. The subagent receives the skill content as its prompt (\"Research \\$ARGUMENTS thoroughly...\")\n3. The `agent` field determines the execution environment (model, tools, and permissions)\n4. Results are summarized and returned to your main conversation\n\nThe `agent` field specifies which subagent configuration to use. Options include built-in agents (`Explore`, `Plan`, `general-purpose`) or any custom subagent from `.claude/agents/`. If omitted, uses `general-purpose`.\n\n### Restrict Claude's skill access\n\nBy default, Claude can invoke any skill that doesn't have `disable-model-invocation: true` set. Skills that define `allowed-tools` grant Claude access to those tools without per-use approval when the skill is active. Your [permission settings](/en/iam) still govern baseline approval behavior for all other tools. Built-in commands like `/compact` and `/init` are not available through the Skill tool.\n\nThree ways to control which skills Claude can invoke:\n\n**Disable all skills** by denying the Skill tool in `/permissions`:\n\n```\n# Add to deny rules:\nSkill\n```\n\n**Allow or deny specific skills** using [permission rules](/en/iam):\n\n```\n# Allow only specific skills\nSkill(commit)\nSkill(review-pr *)\n\n# Deny specific skills\nSkill(deploy *)\n```\n\nPermission syntax: `Skill(name)` for exact match, `Skill(name *)` for prefix match with any arguments.\n\n**Hide individual skills** by adding `disable-model-invocation: true` to their frontmatter. This removes the skill from Claude's context entirely.\n\n<Note>\n  The `user-invocable` field only controls menu visibility, not Skill tool access. Use `disable-model-invocation: true` to block programmatic invocation.\n</Note>\n\n## Share skills\n\nSkills can be distributed at different scopes depending on your audience:\n\n* **Project skills**: Commit `.claude/skills/` to version control\n* **Plugins**: Create a `skills/` directory in your [plugin](/en/plugins)\n* **Managed**: Deploy organization-wide through [managed settings](/en/iam#managed-settings)\n\n### Generate visual output\n\nSkills can bundle and run scripts in any language, giving Claude capabilities beyond what's possible in a single prompt. One powerful pattern is generating visual output: interactive HTML files that open in your browser for exploring data, debugging, or creating reports.\n\nThis example creates a codebase explorer: an interactive tree view where you can expand and collapse directories, see file sizes at a glance, and identify file types by color.\n\nCreate the Skill directory:\n\n```bash  theme={null}\nmkdir -p ~/.claude/skills/codebase-visualizer/scripts\n```\n\nCreate `~/.claude/skills/codebase-visualizer/SKILL.md`. The description tells Claude when to activate this Skill, and the instructions tell Claude to run the bundled script:\n\n````yaml  theme={null}\n---\nname: codebase-visualizer\ndescription: Generate an interactive collapsible tree visualization of your codebase. Use when exploring a new repo, understanding project structure, or identifying large files.\nallowed-tools: Bash(python *)\n---\n\n# Codebase Visualizer\n\nGenerate an interactive HTML tree view that shows your project's file structure with collapsible directories.\n\n## Usage\n\nRun the visualization script from your project root:\n\n```bash\npython ~/.claude/skills/codebase-visualizer/scripts/visualize.py .\n```\n\nThis creates `codebase-map.html` in the current directory and opens it in your default browser.\n\n## What the visualization shows\n\n- **Collapsible directories**: Click folders to expand/collapse\n- **File sizes**: Displayed next to each file\n- **Colors**: Different colors for different file types\n- **Directory totals**: Shows aggregate size of each folder\n````\n\nCreate `~/.claude/skills/codebase-visualizer/scripts/visualize.py`. This script scans a directory tree and generates a self-contained HTML file with:\n\n* A **summary sidebar** showing file count, directory count, total size, and number of file types\n* A **bar chart** breaking down the codebase by file type (top 8 by size)\n* A **collapsible tree** where you can expand and collapse directories, with color-coded file type indicators\n\nThe script requires Python but uses only built-in libraries, so there are no packages to install:\n\n```python expandable theme={null}\n#!/usr/bin/env python3\n\"\"\"Generate an interactive collapsible tree visualization of a codebase.\"\"\"\n\nimport json\nimport sys\nimport webbrowser\nfrom pathlib import Path\nfrom collections import Counter\n\nIGNORE = {'.git', 'node_modules', '__pycache__', '.venv', 'venv', 'dist', 'build'}\n\ndef scan(path: Path, stats: dict) -> dict:\n    result = {\"name\": path.name, \"children\": [], \"size\": 0}\n    try:\n        for item in sorted(path.iterdir()):\n            if item.name in IGNORE or item.name.startswith('.'):\n                continue\n            if item.is_file():\n                size = item.stat().st_size\n                ext = item.suffix.lower() or '(no ext)'\n                result[\"children\"].append({\"name\": item.name, \"size\": size, \"ext\": ext})\n                result[\"size\"] += size\n                stats[\"files\"] += 1\n                stats[\"extensions\"][ext] += 1\n                stats[\"ext_sizes\"][ext] += size\n            elif item.is_dir():\n                stats[\"dirs\"] += 1\n                child = scan(item, stats)\n                if child[\"children\"]:\n                    result[\"children\"].append(child)\n                    result[\"size\"] += child[\"size\"]\n    except PermissionError:\n        pass\n    return result\n\ndef generate_html(data: dict, stats: dict, output: Path) -> None:\n    ext_sizes = stats[\"ext_sizes\"]\n    total_size = sum(ext_sizes.values()) or 1\n    sorted_exts = sorted(ext_sizes.items(), key=lambda x: -x[1])[:8]\n    colors = {\n        '.js': '#f7df1e', '.ts': '#3178c6', '.py': '#3776ab', '.go': '#00add8',\n        '.rs': '#dea584', '.rb': '#cc342d', '.css': '#264de4', '.html': '#e34c26',\n        '.json': '#6b7280', '.md': '#083fa1', '.yaml': '#cb171e', '.yml': '#cb171e',\n        '.mdx': '#083fa1', '.tsx': '#3178c6', '.jsx': '#61dafb', '.sh': '#4eaa25',\n    }\n    lang_bars = \"\".join(\n        f'<div class=\"bar-row\"><span class=\"bar-label\">{ext}</span>'\n        f'<div class=\"bar\" style=\"width:{(size/total_size)*100}%;background:{colors.get(ext,\"#6b7280\")}\"></div>'\n        f'<span class=\"bar-pct\">{(size/total_size)*100:.1f}%</span></div>'\n        for ext, size in sorted_exts\n    )\n    def fmt(b):\n        if b < 1024: return f\"{b} B\"\n        if b < 1048576: return f\"{b/1024:.1f} KB\"\n        return f\"{b/1048576:.1f} MB\"\n\n    html = f'''<!DOCTYPE html>\n<html><head>\n  <meta charset=\"utf-8\"><title>Codebase Explorer</title>\n  <style>\n    body {{ font: 14px/1.5 system-ui, sans-serif; margin: 0; background: #1a1a2e; color: #eee; }}\n    .container {{ display: flex; height: 100vh; }}\n    .sidebar {{ width: 280px; background: #252542; padding: 20px; border-right: 1px solid #3d3d5c; overflow-y: auto; flex-shrink: 0; }}\n    .main {{ flex: 1; padding: 20px; overflow-y: auto; }}\n    h1 {{ margin: 0 0 10px 0; font-size: 18px; }}\n    h2 {{ margin: 20px 0 10px 0; font-size: 14px; color: #888; text-transform: uppercase; }}\n    .stat {{ display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #3d3d5c; }}\n    .stat-value {{ font-weight: bold; }}\n    .bar-row {{ display: flex; align-items: center; margin: 6px 0; }}\n    .bar-label {{ width: 55px; font-size: 12px; color: #aaa; }}\n    .bar {{ height: 18px; border-radius: 3px; }}\n    .bar-pct {{ margin-left: 8px; font-size: 12px; color: #666; }}\n    .tree {{ list-style: none; padding-left: 20px; }}\n    details {{ cursor: pointer; }}\n    summary {{ padding: 4px 8px; border-radius: 4px; }}\n    summary:hover {{ background: #2d2d44; }}\n    .folder {{ color: #ffd700; }}\n    .file {{ display: flex; align-items: center; padding: 4px 8px; border-radius: 4px; }}\n    .file:hover {{ background: #2d2d44; }}\n    .size {{ color: #888; margin-left: auto; font-size: 12px; }}\n    .dot {{ width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }}\n  </style>\n</head><body>\n  <div class=\"container\">\n    <div class=\"sidebar\">\n      <h1>📊 Summary</h1>\n      <div class=\"stat\"><span>Files</span><span class=\"stat-value\">{stats[\"files\"]:,}</span></div>\n      <div class=\"stat\"><span>Directories</span><span class=\"stat-value\">{stats[\"dirs\"]:,}</span></div>\n      <div class=\"stat\"><span>Total size</span><span class=\"stat-value\">{fmt(data[\"size\"])}</span></div>\n      <div class=\"stat\"><span>File types</span><span class=\"stat-value\">{len(stats[\"extensions\"])}</span></div>\n      <h2>By file type</h2>\n      {lang_bars}\n    </div>\n    <div class=\"main\">\n      <h1>📁 {data[\"name\"]}</h1>\n      <ul class=\"tree\" id=\"root\"></ul>\n    </div>\n  </div>\n  <script>\n    const data = {json.dumps(data)};\n    const colors = {json.dumps(colors)};\n    function fmt(b) {{ if (b < 1024) return b + ' B'; if (b < 1048576) return (b/1024).toFixed(1) + ' KB'; return (b/1048576).toFixed(1) + ' MB'; }}\n    function render(node, parent) {{\n      if (node.children) {{\n        const det = document.createElement('details');\n        det.open = parent === document.getElementById('root');\n        det.innerHTML = `<summary><span class=\"folder\">📁 ${{node.name}}</span><span class=\"size\">${{fmt(node.size)}}</span></summary>`;\n        const ul = document.createElement('ul'); ul.className = 'tree';\n        node.children.sort((a,b) => (b.children?1:0)-(a.children?1:0) || a.name.localeCompare(b.name));\n        node.children.forEach(c => render(c, ul));\n        det.appendChild(ul);\n        const li = document.createElement('li'); li.appendChild(det); parent.appendChild(li);\n      }} else {{\n        const li = document.createElement('li'); li.className = 'file';\n        li.innerHTML = `<span class=\"dot\" style=\"background:${{colors[node.ext]||'#6b7280'}}\"></span>${{node.name}}<span class=\"size\">${{fmt(node.size)}}</span>`;\n        parent.appendChild(li);\n      }}\n    }}\n    data.children.forEach(c => render(c, document.getElementById('root')));\n  </script>\n</body></html>'''\n    output.write_text(html)\n\nif __name__ == '__main__':\n    target = Path(sys.argv[1] if len(sys.argv) > 1 else '.').resolve()\n    stats = {\"files\": 0, \"dirs\": 0, \"extensions\": Counter(), \"ext_sizes\": Counter()}\n    data = scan(target, stats)\n    out = Path('codebase-map.html')\n    generate_html(data, stats, out)\n    print(f'Generated {out.absolute()}')\n    webbrowser.open(f'file://{out.absolute()}')\n```\n\nTo test, open Claude Code in any project and ask \"Visualize this codebase.\" Claude runs the script, generates `codebase-map.html`, and opens it in your browser.\n\nThis pattern works for any visual output: dependency graphs, test coverage reports, API documentation, or database schema visualizations. The bundled script does the heavy lifting while Claude handles orchestration.\n\n## Troubleshooting\n\n### Skill not triggering\n\nIf Claude doesn't use your skill when expected:\n\n1. Check the description includes keywords users would naturally say\n2. Verify the skill appears in `What skills are available?`\n3. Try rephrasing your request to match the description more closely\n4. Invoke it directly with `/skill-name` if the skill is user-invocable\n\n### Skill triggers too often\n\nIf Claude uses your skill when you don't want it:\n\n1. Make the description more specific\n2. Add `disable-model-invocation: true` if you only want manual invocation\n\n### Claude doesn't see all my skills\n\nSkill descriptions are loaded into context so Claude knows what's available. If you have many skills, they may exceed the character budget (default 15,000 characters). Run `/context` to check for a warning about excluded skills.\n\nTo increase the limit, set the `SLASH_COMMAND_TOOL_CHAR_BUDGET` environment variable.\n\n## Related resources\n\n* **[Subagents](/en/sub-agents)**: delegate tasks to specialized agents\n* **[Plugins](/en/plugins)**: package and distribute skills with other extensions\n* **[Hooks](/en/hooks)**: automate workflows around tool events\n* **[Memory](/en/memory)**: manage CLAUDE.md files for persistent context\n* **[Interactive mode](/en/interactive-mode#built-in-commands)**: built-in commands and shortcuts\n* **[Permissions](/en/iam)**: control tool and skill access","tags":{"latest":"0.1.0"},"stats":{"comments":0,"downloads":397,"installsAllTime":0,"installsCurrent":0,"stars":0,"versions":1},"createdAt":1771303850696,"updatedAt":1779074024721},"latestVersion":{"version":"0.1.0","createdAt":1771303850696,"changelog":"Initial release of wellally-health-skills.\n\n- Introduces support for creating, managing, and sharing custom skills to extend Claude's capabilities in Claude Code.\n- Unifies custom slash commands and skills; either a .claude/commands or .claude/skills entry creates a slash command.\n- Implements automatic and direct invocation of skills via slash commands.\n- Adopts and extends the Agent Skills open standard, supporting features like invocation control, subagent execution, and dynamic context injection.\n- Adds support for skill-specific directories, supporting files, nested discovery in subdirectories, and prioritization across enterprise, personal, project, and plugin levels.\n- Provides comprehensive examples and guidelines for creating, configuring, and organizing skills using YAML frontmatter and markdown.","license":null},"metadata":null,"owner":{"handle":"huifer","userId":"s173prry4f4zty70jays2y0zx18585n2","displayName":"Zen Huifer","image":"https://avatars.githubusercontent.com/u/26766909?v=4"},"moderation":{"isSuspicious":false,"isMalwareBlocked":false,"verdict":"clean","reasonCodes":["review.llm_review"],"summary":"Review: review.llm_review","engineVersion":"v2.4.24","updatedAt":1780089730364}}