⚙️
AutomationPython

Add Command

by ldayton

Add Command is an Automation skill for Claude Code, published by ldayton in Dippy.

243 stars21 forkson ldayton/DippyAdded 2026/09/02+1% in starsRepository updated 2026/06/12
bashclaude-codeclihookpermissionspython
Install in seconds
Install Add Command
Copy Add Command into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/ldayton/Dippy/tree/main/.claude/skills/add-command ~/.claude/skills/add-command

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/ldayton/Dippy.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/add-command/SKILL.md in ldayton/Dippy
Installs to
~/.claude/skills/add-command
Collection
One of 5 skills cataloged from this repository
Category
Automation1648 skills

What Add Command does

Add Command adds support for a new CLI command in Dippy. Use it when implementing a handler or deciding whether a command belongs in SIMPLE_SAFE.

Add Command is cataloged under Automation on DirSkills. Add Command comes from a repository tagged bash, claude-code, cli, hook and permissions.

Documentation

README

Add support for $ARGUMENTS in Dippy.

1. Research

tldr pages:

ls ~/source/tldr/pages/*/$ARGUMENTS*.md
cat ~/source/tldr/pages/*/$ARGUMENTS.md

CLI docs:

$ARGUMENTS --help
man $ARGUMENTS

Note which operations are read-only vs mutations.

2. Decide: Handler or SIMPLE_SAFE?

  • SIMPLE_SAFE: Always safe regardless of arguments (read-only, no destructive flags). Go to step 3A.
  • Handler: Needs subcommand/flag analysis. Go to step 3B.

3A. SIMPLE_SAFE Path

Add to SIMPLE_SAFE in src/dippy/core/allowlists.py and add tests to tests/test_simple.py in the appropriate category. Skip to step 5.

3B. Handler Path

Create tests/cli/test_$ARGUMENTS.py:

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Add Command

  • What else does ldayton publish alongside Add Command?

    Add Command is one of 5 skills that DirSkills catalogs from ldayton/Dippy, the repository it ships in. Its siblings there include Check Coverage, Debug and Release. Each one is a separate skill with its own page in this directory, installs the same way Add Command does, and is maintained by ldayton in that same repository. The rest of the collection is listed on the ldayton/Dippy page.

  • How does Add Command compare to other Automation skills?

    Add Command ranks #1487 by stars among the 1648 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Add Command against them. Open each page to compare what they document and how they install.