multiAI Summary Pending

installing-skill-tracker

Installs Claude Code hooks for automatic skill usage measurement. Use when setting up skill tracking infrastructure in a new project. NOT when hooks are already installed (run verify.py to check).

231 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/installing-skill-tracker/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/asmayaseen/installing-skill-tracker/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/installing-skill-tracker/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How installing-skill-tracker Compares

Feature / Agentinstalling-skill-trackerStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Installs Claude Code hooks for automatic skill usage measurement. Use when setting up skill tracking infrastructure in a new project. NOT when hooks are already installed (run verify.py to check).

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

## Quick Start

```bash
python .claude/skills/installing-skill-tracker/scripts/setup.py
python .claude/skills/installing-skill-tracker/scripts/verify.py
```

## Instructions

1. **Run setup** to install tracking hooks:
   ```bash
   python .claude/skills/installing-skill-tracker/scripts/setup.py
   ```

2. **Verify installation**:
   ```bash
   python .claude/skills/installing-skill-tracker/scripts/verify.py
   ```

3. **View usage analysis** (after some skill usage):
   ```bash
   python .claude/hooks/analyze-skills.py
   ```

## If Verification Fails

1. **Check jq is installed**:
   ```bash
   jq --version || echo "Install jq: brew install jq"
   ```

2. **Check hook scripts exist**:
   ```bash
   ls -la .claude/hooks/track-*.sh
   ```

3. **Check settings.json**:
   ```bash
   cat .claude/settings.json | jq .hooks
   ```

4. **Re-run setup** if components missing:
   ```bash
   python .claude/skills/installing-skill-tracker/scripts/setup.py
   ```

**Stop and report** if verification still fails after re-running setup.