install-user-instructions

install-user-instructions is a skill for Claude Code, Codex from neuromechanist/research-skills. It costs 87 tokens per session (848 once invoked), scanned C, original, BSD-3-Clause.

A workflow for installing or reviewing personal AI coding instructions for Claude Code, OpenAI Codex, GitHub Copilot CLI, and Cursor. It checks available tools and shows planned changes before writing anything.

In plain words
What is it for?
Use it to detect supported coding assistants, choose which ones to configure, preview destination files and changes, install shared instructions, or produce Cursor's settings block.
Why use it?
It lets you share personal defaults across selected coding assistants without overwriting existing instructions or copying project-specific rules into personal settings.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions AGENTS.md.

Part of the project plugin — 15 skills, 5 commands, 3 agents shipped together

Good fit Use it to detect supported coding assistants, choose which ones to configure, preview destination files and changes, install shared instructions, or produce Cursor's settings block.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuromechanist/research-skills/install-user-instructions
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.

Any agent
npx skills add neuromechanist/research-skills --skill install-user-instructions
Clone the repo
git clone --depth 1 https://github.com/neuromechanist/research-skills

Made for: Claude Code, Codex.

Or install project, the plugin that ships this one along with the rest of its 15 skills, 5 commands, 3 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-user-instructions

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuromechanist/research-skills/install-user-instructions/github.svg)](https://agentmods.dev/skills/neuromechanist/research-skills/install-user-instructions)
Your own site
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/install-user-instructions"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/install-user-instructions/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-user-instructions

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/install-user-instructions"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/install-user-instructions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 848 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.00087 $0.00848
Opus 5 $0.00044 $0.00424
Sonnet 5 $0.00017 $0.00170
Haiku 4.5 $0.00009 $0.00085

Measured 13d ago against content hash 3f324f235bae, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

install-user-instructions 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 13d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/install_user_instructions.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

`<!-- research-skills:global-instructions:start -->` and
plugins/project/skills/install-user-instructions/SKILL.md · 91 lines

How it starts

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

Install User Instructions

Install shared personal defaults at each selected system's supported user surface without overwriting custom content or copying global rules into every repository.

Workflow

  1. Detect available systems with read-only checks (command -v plus existing target files). Do not infer that every detected system should be modified.
  2. Ask the user which of Claude Code, Codex, Copilot CLI, and Cursor to configure. This selection is required before any user-home write.
  3. Read references/platform-paths.md for the selected systems. Resolve documented home overrides before default paths.
  4. Choose the instruction content:
    • use assets/global-instructions.md for the project defaults;
    • use a user-supplied file with --template when requested;
    • never silently copy a repository's project-specific instructions into user scope.
  5. Run scripts/install_user_instructions.py --systems <csv> without --apply. This is the mandatory dry-run and diff preview.
  6. Show every destination and diff. For Cursor, show the copy/paste block for Cursor Settings > Rules; do not invent a filesystem destination.
  7. Ask for confirmation of the exact selected destinations and changes.
  8. After confirmation, rerun with --apply. Writing outside the workspace may require the runtime's normal filesystem approval.
  9. Verify each selected system using the command or UI check in references/platform-paths.md.
  10. Audit the current repository for duplicated general rules. Report exact duplicates or conflicts, but remove project content only with separate user approval.

Non-destructive contract

  • Manage only the block between <!-- research-skills:global-instructions:start --> and <!-- research-skills:global-instructions:end -->.
  • Preserve all content outside the managed block byte-for-byte.
  • Fail on unmatched or repeated markers instead of guessing.
  • Default to preview mode. --apply is required for writes.
  • Write only explicitly selected systems.
  • Keep Cursor manual until its official User Rules surface exposes a stable, supported file path.
  • Keep general personal defaults at user scope. Repository AGENTS.md, CLAUDE.md, .github/copilot-instructions.md, and .cursor/rules contain only project facts or system-specific/path-scoped deltas.
  • Do not duplicate shared project rules in CLAUDE.md; import AGENTS.md and append Claude-only deltas.

Read the full file on GitHub · 91 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 91 lines · 87 tokens per session scan C 3f324f235bae

Subscribe to this mod's changes

install-user-instructions is a skill published in the GitHub repository neuromechanist/research-skills (45 stars, last pushed 10d ago), licensed BSD-3-Clause. It adds 87 tokens to every session and 848 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

releasing-godot-prompter

Use when cutting a GodotPrompter release or bumping its version — the version-bump sequence, tag-triggered workflow, and the marketplace manifests that must follow.

jame581/GodotPrompter · 44 tokens

obsidian-workout-export

Export workout data to an Obsidian-formatted Markdown file. Always trigger immediately when the user types "owd". Also trigger on "export workout", "obsidian workout", "save workout to obsidian", or related requests to export workout data into Obsidian. Read the current conversation first before searching prior…

mickpletcher/AI-Skills · 87 tokens

skill-iterative-loop

Run tasks in a loop until goals are met — use for iterative refinement, polling, or convergence.

nyldn/claude-octopus · 25 tokens

screen-detox

A habit-change framework for reducing non-work screen use such as social media, short videos, games, and endless scrolling.

kangarooking/cangjie-skill · 148 tokens

monkey-mind-meditation

A meditation and reflection guide for a busy or anxious mind. It treats recurring thoughts as something to observe and examine, while noting that acute serious mental-health problems need professional care.

kangarooking/cangjie-skill · 158 tokens

file-organizer

Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.

foryourhealth111-pixel/Vibe-Skills · 46 tokens