# npx skills Command for Installing i-have-adhd: Complete Guide

> Learn the npx skills command for installing i-have-adhd. Discover how to add the ayghri/i-have-adhd skill locally or globally with this comprehensive guide.

- Repository: [Ayoub Ghriss/i-have-adhd](https://github.com/ayghri/i-have-adhd)
- Tags: how-to-guide
- Published: 2026-07-31

---

**The npx skills command for installing i-have-adhd is `npx skills add ayghri/i-have-adhd`, which installs the skill locally by default and supports flags like `-g` for global installation or `-a` to target specific AI agents.**

The `ayghri/i-have-adhd` repository provides a specialized skill for AI agents that can be installed via the `npx skills` command-line utility. This installation method allows you to quickly add the i-have-adhd functionality to your development environment using simple commands. Understanding the correct npx skills command for installing i-have-adhd ensures seamless integration with agents like Pi, GitHub Copilot, and OpenCode.

## Basic npx skills Installation Command

The fundamental command to install the i-have-adhd skill is:

```bash
npx skills add ayghri/i-have-adhd

```

By default, this command installs the skill into your current workspace. According to the repository's [`INSTALL.md`](https://github.com/ayghri/i-have-adhd/blob/main/INSTALL.md) file, the skill files are placed in `.agents/skills/` or `.cursor/skills/` within your project directory.

## Global and Agent-Specific Installation Options

You can customize the installation using various flags to control scope and target specific agents.

### Global Installation

To install the i-have-adhd skill globally for use across all projects, add the `-g` flag:

```bash
npx skills add ayghri/i-have-adhd -g

```

This places the skill in your user-wide skills directory (`~/.agents/skills/` or `~/.cursor/skills/`), making it available system-wide rather than project-local.

### Agent-Specific Installation

Target specific AI agents using the `-a` flag followed by the agent identifier:

**Pi Agent:**

```bash
npx skills add ayghri/i-have-adhd -a pi -y

```

**GitHub Copilot Agent:**

```bash
npx skills add ayghri/i-have-adhd -a github-copilot

```

**OpenCode Agent:**

```bash
npx skills add ayghri/i-have-adhd -a opencode -y

```

The `-y` flag automatically accepts installation prompts, streamlining the setup process.

## Verifying the Installation

After running the npx skills command for installing i-have-adhd, verify the installation using:

```bash
npx skills list

```

For globally installed skills, use:

```bash
npx skills ls -g

```

## Key Configuration Files

The installation process references several critical files in the `ayghri/i-have-adhd` repository:

- **[`INSTALL.md`](https://github.com/ayghri/i-have-adhd/blob/main/INSTALL.md)** – Documents the complete set of `npx skills` commands and installation procedures
- **[`skills/i-have-adhd/SKILL.md`](https://github.com/ayghri/i-have-adhd/blob/main/skills/i-have-adhd/SKILL.md)** – Defines the skill's behavior, rules, and prompts that activate after installation
- **[`plugin.json`](https://github.com/ayghri/i-have-adhd/blob/main/plugin.json)** – Contains plugin metadata used by agents to load and configure the skill

## Using the Skill After Installation

Once installed via the npx skills command, invoke the i-have-adhd functionality using your agent's slash command syntax. For example, in the Pi agent, you would use:

```bash
/skill:i-have-adhd

```

The skill reads its configuration from [`skills/i-have-adhd/SKILL.md`](https://github.com/ayghri/i-have-adhd/blob/main/skills/i-have-adhd/SKILL.md) to determine its operational parameters and response patterns.

## Summary

- The **npx skills command for installing i-have-adhd** is `npx skills add ayghri/i-have-adhd`
- Add the **`-g`** flag for global installation across all projects
- Use **`-a`** followed by the agent name (pi, github-copilot, opencode) to target specific AI assistants
- Include **`-y`** to automatically accept prompts during installation
- Verify installation with `npx skills list` or `npx skills ls -g`
- Configuration resides in [`SKILL.md`](https://github.com/ayghri/i-have-adhd/blob/main/SKILL.md) and [`plugin.json`](https://github.com/ayghri/i-have-adhd/blob/main/plugin.json) within the repository

## Frequently Asked Questions

### What is the exact npx skills command for installing i-have-adhd?

The exact command is `npx skills add ayghri/i-have-adhd`. This installs the skill locally in your current workspace under `.agents/skills/` or `.cursor/skills/` by default, as documented in the repository's [`INSTALL.md`](https://github.com/ayghri/i-have-adhd/blob/main/INSTALL.md) file.

### How do I install i-have-adhd globally using npx skills?

Append the `-g` flag to the installation command: `npx skills add ayghri/i-have-adhd -g`. This places the skill in your user-wide directory (`~/.agents/skills/` or `~/.cursor/skills/`) making it available across all projects on your system.

### Can I install i-have-adhd for a specific agent like Pi or GitHub Copilot?

Yes, use the `-a` flag followed by the agent identifier. For Pi, use `npx skills add ayghri/i-have-adhd -a pi`. For GitHub Copilot, use `-a github-copilot`. Add `-y` to skip confirmation prompts during installation.

### Where does the npx skills command install i-have-adhd by default?

By default, the command installs the skill locally in your current working directory under `.agents/skills/` or `.cursor/skills/`. Global installations using `-g` place files in `~/.agents/skills/` or `~/.cursor/skills/` in your home directory.