add-tool — home-manager add-tool, opt-out, community, home-manager, ide skills, nix-darwin, nix-flake, telemetry, Claude Code, Cursor, Windsurf

v1.0.0

이 스킬 정보

일반적인 도구 및 응용 프로그램에 대한 고급 원격 측정 옵트 아웃 기능이 필요한 Nix 기반 에이전트에 적합합니다. Investigate a tool from a GitHub issue and add it to the opt-out flake

# Core Topics

adampie adampie
[2]
[0]
Updated: 3/14/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

일반적인 도구 및 응용 프로그램에 대한 고급 원격 측정 옵트 아웃 기능이 필요한 Nix 기반 에이전트에 적합합니다. Investigate a tool from a GitHub issue and add it to the opt-out flake

이 스킬을 사용하는 이유

에이전트가 GitHub 문제를 사용하여 도구를 조사하고 옵트 아웃雪花에 대한 자격을 결정할 수 있는 기능을 제공하고 환경 변수를 사용하여 원격 측정, 분석 또는 충돌 보고서를 비활성화하고 Nix 플레이크 모듈을 사용하여 무결점 통합을 구현합니다.

최적의 용도

일반적인 도구 및 응용 프로그램에 대한 고급 원격 측정 옵트 아웃 기능이 필요한 Nix 기반 에이전트에 적합합니다.

실행 가능한 사용 사례 for add-tool

원격 측정 옵트 아웃 자격을 결정하기 위해 도구를 조사합니다.
분석을 비활성화하기 위해 환경 변수를 조사합니다.
도구가 Nix, NixOS 및 Home Manager와 호환되는지 확인합니다.

! 보안 및 제한 사항

  • gh 문제 보기 액세스가 필요합니다.
  • 환경 변수 옵트 아웃만 해당됩니다.
  • Nix, NixOS 및 Home Manager와의 호환성이 필요합니다.

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is add-tool?

일반적인 도구 및 응용 프로그램에 대한 고급 원격 측정 옵트 아웃 기능이 필요한 Nix 기반 에이전트에 적합합니다. Investigate a tool from a GitHub issue and add it to the opt-out flake

How do I install add-tool?

Run the command: npx killer-skills add adampie/opt-out/add-tool. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for add-tool?

Key use cases include: 원격 측정 옵트 아웃 자격을 결정하기 위해 도구를 조사합니다., 분석을 비활성화하기 위해 환경 변수를 조사합니다., 도구가 Nix, NixOS 및 Home Manager와 호환되는지 확인합니다..

Which IDEs are compatible with add-tool?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for add-tool?

gh 문제 보기 액세스가 필요합니다.. 환경 변수 옵트 아웃만 해당됩니다.. Nix, NixOS 및 Home Manager와의 호환성이 필요합니다..

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add adampie/opt-out/add-tool. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use add-tool immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

add-tool

Install add-tool, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Add tool

Investigate the tool described in GitHub issue $ARGUMENTS and determine whether it qualifies for the opt-out flake.

  1. Read the GitHub issue using gh issue view to get the tool name and any linked documentation.

  2. Research the tool by visiting its official documentation and source repository. Look specifically for environment variables that disable telemetry, analytics, or crash reporting.

  3. Verify eligibility. Only environment variable opt-outs qualify. The following do NOT qualify:

    • Update check suppression (e.g., DENO_NO_UPDATE_CHECK)
    • CLI-command-based opt-out (e.g., flutter --disable-analytics)
    • Settings-file-based opt-out
  4. Check for duplicates. Verify the tool does not already exist in tools/ (including _-prefixed excluded files).

  5. Create the tool file:

    If a valid env var opt-out exists, create tools/<toolname>.nix:

    nix
    1{ 2 name = "<toolname>"; 3 meta = { 4 description = "<description of the tool itself — do not reference other tools>"; 5 homepage = "<link to the tool's git repository>"; 6 documentation = "<link to the specific documentation page proving the env var opt-out>"; 7 lastChecked = "YYYY-MM-DD"; 8 hasTelemetry = true; 9 }; 10 variables = { 11 ENV_VAR_NAME = "value"; 12 }; 13 commands = { }; 14}

    If the tool also has CLI commands for telemetry (e.g., to check status or disable), add them:

    nix
    1 commands = { 2 disable = "tool --disable-analytics"; 3 status = "tool analytics status"; 4 };

    If NO valid env var opt-out exists, create tools/_<toolname>.nix (do not add comments explaining why the tool is excluded — the metadata fields are self-documenting):

    nix
    1{ 2 name = "<toolname>"; 3 meta = { 4 description = "<description of the tool itself — do not reference other tools>"; 5 homepage = "<link to the tool's git repository>"; 6 documentation = "<link to relevant documentation>"; 7 lastChecked = "YYYY-MM-DD"; 8 hasTelemetry = true; 9 }; 10 variables = { }; 11 commands = { }; 12 config = { }; 13}

    If the tool has a config-file-based opt-out, populate the config map with the file path as key and key/value settings as the value:

    nix
    1 config = { 2 "~/.toolname/config.toml" = { 3 "telemetry.enabled" = "false"; 4 }; 5 };

    Set hasTelemetry = false; only if the tool was investigated and confirmed to have no telemetry at all.

  6. Metadata rules:

    • The description must describe only the tool being added. Do not mention other tools, frameworks, or ecosystems.
    • The homepage must link to the tool's own repository.
    • The documentation must link to the tool's own documentation page that covers telemetry/analytics opt-out. Prefer official website docs over source code links — only link to source code if no public documentation exists.
    • Set lastChecked to today's date in YYYY-MM-DD format.
    • Set hasTelemetry to true for tools with telemetry (even excluded ones that only have CLI opt-out). Set to false only if the tool was investigated and confirmed to have no telemetry.
  7. Stage, format, and validate:

    bash
    1git add tools/<filename>.nix 2mise run fmt 3mise run lint 4mise run flake-check
  8. Update README if the tool was added (not _-prefixed):

    bash
    1mise run readme-vars 2git add README.md
  9. Commit, push, and create a PR:

    • Create a branch named add-tool/<toolname>
    • Commit with a clear message describing the addition
    • Push and create a PR using gh pr create
    • Assign the PR to @adampie
    • Link to the GitHub issue in the PR body with Closes #<number>

관련 스킬

Looking for an alternative to add-tool or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자