install

install is a command for Claude Code from landim32/awesome-ai-skills. It costs 22 tokens per session (699 once invoked), scanned C, original, MIT.

A command that copies skills, agents, and commands from a GitHub repository into the current project's .claude directory. GitHub is a service for hosting and sharing code repositories.

In plain words
What is it for?
Use it to install Claude Code project files from a repository, optionally choosing a branch.
Why use it?
It avoids manually downloading and placing these configuration files, and checks that the repository and branch information is valid.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Part of the awesome-ai-skills plugin — 36 skills, 11 commands, 8 agents shipped together

Good fit Use it to install Claude Code project files from a repository, optionally choosing a branch.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/landim32/awesome-ai-skills/install
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/landim32/awesome-ai-skills

Made for: Claude Code.

Or install awesome-ai-skills, the plugin that ships this one along with the rest of its 36 skills, 11 commands, 8 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for install

README.md
[![agentmods](https://agentmods.dev/badge/commands/landim32/awesome-ai-skills/install/github.svg)](https://agentmods.dev/commands/landim32/awesome-ai-skills/install)
Your own site
<a href="https://agentmods.dev/commands/landim32/awesome-ai-skills/install"><img src="https://agentmods.dev/badge/commands/landim32/awesome-ai-skills/install/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for install

Your own site · 80×15
<a href="https://agentmods.dev/commands/landim32/awesome-ai-skills/install"><img src="https://agentmods.dev/badge/commands/landim32/awesome-ai-skills/install.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 699 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00022 $0.00699
Opus 5 $0.00011 $0.00349
Sonnet 5 $0.00004 $0.00140
Haiku 4.5 $0.00002 $0.00070

Measured 9d ago against content hash d464973e1704, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade C, and why

install scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

6. Remove the temporary directory (`rm -rf "$TEMP"`).
commands/install.md · 57 lines

How it starts

The opening of the file, as written. The whole thing — 57 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/install — Install Claude Code artifacts from a GitHub repo

Install the artifact folders skills/, agents/, and commands/ from a GitHub repository into the current project's .claude/ directory.

Input

Argument: $ARGUMENTS

Accepted formats:

  • <user>/<repo> — shorthand; branch defaults to main (e.g., landim32/awesome-ai-skills).
  • <user>/<repo>@<branch> — explicit branch (e.g., landim32/awesome-ai-skills@develop).
  • Full https://github.com/<user>/<repo>(.git) URL with optional @<branch> suffix.

If $ARGUMENTS is empty or does not parse as one of the above, ask the user to provide a valid <user>/<repo> and stop.

Execution

  1. Parse $ARGUMENTS into REPO_SLUG (e.g., landim32/awesome-ai-skills) and BRANCH (default main).

  2. Verify that git is available via git --version. If not, abort with a clear error message and stop.

  3. Shallow-clone the repository into a temporary directory using a single Bash command:

    TEMP=$(mktemp -d -t claude-install-XXXXXX) && \
    git clone --depth 1 --branch "$BRANCH" --quiet "https://github.com/$REPO_SLUG.git" "$TEMP"
    
  4. Ensure .claude/ exists in the current working directory (mkdir -p .claude).

  5. For each folder in the fixed list skills, agents, commands:

    • If $TEMP/<folder> exists and is not empty, create .claude/<folder>/ if missing and copy its contents recursively (cp -r "$TEMP/<folder>/." ".claude/<folder>/"). Collisions MUST be overwritten; files that exist only in the destination MUST be preserved.
    • If $TEMP/<folder> is missing or empty, print a warning and skip it.
  6. Remove the temporary directory (rm -rf "$TEMP").

Reporting

After completion, print a concise summary containing:

  • The repository slug and branch that was cloned.
  • For each of the three target folders: the count of files copied, or skipped (not present in source) if the folder was missing.
  • The absolute path of the destination .claude/ directory.

Boundaries

Read the full file on GitHub · 57 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 57 lines · 22 tokens per session scan C d464973e1704

Subscribe to this mod's changes

install is a command published in the GitHub repository landim32/awesome-ai-skills (1 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 699 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other commands, from other repositories

skill-safety

Hostile audit of coding-agent configuration the project installed rather than wrote: skills, subagents, commands, plugins, hooks, and rule files obtained from a marketplace, a git URL, a gist, or a teammate. Assume every installed instruction file is attacker-authored until read, and that the attacker's goal is to be…

ivuorinen/skills · 0 tokens

cr

Tool-driven implementation of unresolved PR/MR review comments on GitHub, GitLab or Bitbucket: fetch every comment thread plus the out-of-thread notices (review bodies, bot summaries), evaluate each for technical validity, implement valid ones one at a time with a full validation pass after each, and scan the codebase…

ivuorinen/skills · 0 tokens

_conventions

Read this file before executing any command file. Every rule here applies to every command unless the command file explicitly overrides it.

ivuorinen/skills · 0 tokens

agent-rules

Audits the project's agent rule configuration end-to-end: validates every rule file, classifies every rule in the root instruction file as correctly placed or misplaced, and generates concrete new-rule suggestions from audit artifacts and project conventions. Assume every rule file has defects until proven otherwise.

ivuorinen/skills · 0 tokens

cache

Hostile audit of caching correctness: assume every cache serves stale data after a write, shares a key across entities that must not share one, grows without bound, and stampedes on expiry — then prove where. A cache is a correctness liability until its key, its invalidation, its bound, and its expiry behavior are all…

ivuorinen/skills · 0 tokens

complexity

Forces the laziest solution that actually works — simplest, shortest, most minimal — on every coding task, and audits a diff, plan, or whole repo for over-engineering. Channel a lazy senior developer who has seen every over-engineered codebase and been paged at 3am for one: lazy means efficient, not careless, and the…

ivuorinen/skills · 0 tokens