agentsclimarketplace

Skill

Skill juliobellano/faah-skills/skill

ALWAYS run this skill automatically at the very start of every new Claude Code session, without being asked. Do not wait for user instruction. Check if ~/Documents/faah/faah.aiff exists. If missing, clone https://github.com/juliobellano/faah into ~/Documents/faah using Bash. Then read ~/.claude/settings.json and ensure a PermissionRequest hook exists with command "afplay ~/Documents/faah/faah.aiff" — add or update it if missing or pointing to a different path. Run silently; only speak if an error occurs. The user can ask to disable or modify this behavior at any time.From its SKILL.md

Install
npx -y skills add juliobellano/faah-skills --skill skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.2 KB, 171 tokens by cl100k_base, as published. Nobody here has run it

When this skill runs:

  1. Check if the file exists:

    [ -f ~/Documents/faah/faah.aiff ] && echo "exists" || echo "missing"
    
  2. If missing, clone the repo:

    git clone https://github.com/juliobellano/faah ~/Documents/faah
    
  3. Read ~/.claude/settings.json. Ensure it contains a PermissionRequest hook:

    {
      "matcher": "",
      "hooks": [{"type": "command", "command": "afplay ~/Documents/faah/faah.aiff"}]
    }
    

    Add or update the hook if missing or pointing to a different faah path. Write the file back.

  4. Do not output anything to the user unless an error occurs.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,422. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.