personal-os-setup: Skill for Claude Code

.claude/skills/fork-and-customize/SKILL.md

fork-and-customize is a skill for Claude Code from AmineDjeghri/personal-os-setup. It costs 87 tokens per session (1,020 once invoked), scanned A, original, MIT.

A guide for copying this personal computer-setup project and adapting it for your own machines. It explains which package lists, configuration files, and dotfiles to replace.

In plain words
What is it for?
Use it when creating your own version of the setup tool, changing supported packages, replacing shell or desktop settings, or preparing your fork for release.
Why use it?
It shows where personal settings live, so you can rebrand the project without rewriting its main code. Dotfiles are the configuration files that control tools such as your shell and desktop.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is AmineDjeghri/personal-os-setup's own configuration. It tells Claude Code how to work on personal-os-setup itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything personal-os-setup configures →

Reuse

Borrowing it

Nothing to install: this file belongs to AmineDjeghri/personal-os-setup. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/AmineDjeghri/personal-os-setup/main/.claude/skills/fork-and-customize/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AmineDjeghri/personal-os-setup

Made for: Claude Code.

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 fork-and-customize

README.md
[![agentmods](https://agentmods.dev/badge/skills/aminedjeghri/personal-os-setup/fork-and-customize/github.svg)](https://agentmods.dev/skills/aminedjeghri/personal-os-setup/fork-and-customize)
Your own site
<a href="https://agentmods.dev/skills/aminedjeghri/personal-os-setup/fork-and-customize"><img src="https://agentmods.dev/badge/skills/aminedjeghri/personal-os-setup/fork-and-customize/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 fork-and-customize

Your own site · 80×15
<a href="https://agentmods.dev/skills/aminedjeghri/personal-os-setup/fork-and-customize"><img src="https://agentmods.dev/badge/skills/aminedjeghri/personal-os-setup/fork-and-customize.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 1,020 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.01020
Opus 5 $0.00044 $0.00510
Sonnet 5 $0.00017 $0.00204
Haiku 4.5 $0.00009 $0.00102

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

Security

Grade A, and why

fork-and-customize scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/fork-and-customize/SKILL.md · 33 lines

How it starts

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

Forking personal-os-setup for your own setup

The repo is designed so most personalization lives in data (packages.yaml, the chezmoi source dir, docs/), not code — a fork mainly needs to replace those, not rewrite the app.

What to customize

  1. Package catalogsrc/personal_os_setup/config/packages.yaml. Structure: packages: <distro>: <manager>: <category>: [package names]. Edit/add/remove entries per distro; categories are free-form strings (they become Collapsible groups in the Packages tab). See [[add-system-action]] if you're also adding a brand-new manager backend, not just editing package lists for existing managers.
  2. Dotfilessrc/personal_os_setup/config/chezmoi/ is the chezmoi source dir shipped with the package (chezmoi_source_dir() in tasks/system/chezmoi.py resolves it via importlib.resources). Replace dot_zshrc/dot_p10k.zsh/dot_config/... with your own, or use the app's own "Sync dotfiles" tab (chezmoi: track a new file action) to add files interactively once you're running your fork. .chezmoiexternal.toml/.chezmoiignore in that dir control externally-pulled resources (oh-my-zsh, plugins, theme) and ignore rules.
  3. Branding / metadata:
    • pyproject.toml: [project] name, description, [project.scripts] entry point name if you want a different CLI command.
    • CNAME (repo root) — the custom domain for the docs site, only relevant if you're using GitHub Pages with a custom domain.
    • src/personal_os_setup/tasks/system/help.py's DOCS_SITE_URL constant — the URL the in-app "🚀 Start" tab's doc-link buttons open. See app.py's _START_SECTION_NAME/_START_GUIDE_MARKDOWN if you also want to edit the in-app onboarding walkthrough text.
    • properdocs.yml: site_name, site_author, theme.logo/favicon.
    • README.md/docs/ content — the actual walkthrough docs the doc-link buttons point to.
  4. OS-specific config under src/personal_os_setup/config/{darwin,unix,windows,others}/ — these are bundled app-specific config files (Raycast, Aerospace, GlazeWM, etc.) referenced by individual system actions in factory.py; swap for your own equivalents if you use different apps, and update the corresponding tasks/system/*.py action that references them.

Read the full file on GitHub · 33 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. 11d ago First seen · 33 lines · 87 tokens per session scan A fe0ea9391cfd

Subscribe to this mod's changes

fork-and-customize is a skill published in the GitHub repository AmineDjeghri/personal-os-setup (602 stars, last pushed 2d ago), licensed MIT. It adds 87 tokens to every session and 1,020 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.