ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Dev Setup

Set up macOS dev environments with automated install scripts for tools. Use when provisioning Macs, installing dev tools, configuring shells.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/ckchzh/dev-setup
Or

Dev Setup

Dev Setup v2.0.0 — a utility toolkit for logging, tracking, and managing development setup entries from the command line.

Commands

All commands accept optional input arguments. Without arguments, they display recent entries from the corresponding log. With arguments, they record a new timestamped entry.

CommandDescription
run <input>Record or view run entries
check <input>Record or view check entries
convert <input>Record or view convert entries
analyze <input>Record or view analyze entries
generate <input>Record or view generate entries
preview <input>Record or view preview entries
batch <input>Record or view batch entries
compare <input>Record or view compare entries
export <input>Record or view export entries
config <input>Record or view config entries
status <input>Record or view status entries
report <input>Record or view report entries
statsShow summary statistics across all log files
search <term>Search all log entries for a keyword (case-insensitive)
recentDisplay the 20 most recent history log entries
helpShow usage information
versionPrint version (v2.0.0)

Data Storage

All data is stored locally in ~/.local/share/dev-setup/:

  • Per-command logs — Each command (run, check, convert, etc.) writes to its own .log file with pipe-delimited timestamp|value format.
  • history.log — A unified activity log recording every write operation with timestamps.
  • Export formats — The export utility function supports JSON, CSV, and TXT output, written to ~/.local/share/dev-setup/export.<fmt>.

No external services, databases, or API keys are required. Everything is flat-file and human-readable.

Requirements

  • Bash (v4+ recommended)
  • No external dependencies — uses only standard Unix utilities (date, wc, du, tail, grep, sed, basename, cat)

When to Use

  • When you need to log and track development setup activities on macOS
  • To maintain a searchable history of tool installations and configurations
  • For batch recording of setup tasks with timestamps
  • When you want to export setup logs in JSON, CSV, or TXT format
  • As part of a larger provisioning or onboarding automation pipeline
  • To get quick statistics and summaries of past setup activities

Examples

# Record a new run entry
dev-setup run "installed Homebrew and Xcode CLI tools"

# View recent run entries (no args = show history)
dev-setup run

# Check something and log it
dev-setup check "Vim plugins installed via vim-plug"

# Analyze and record
dev-setup analyze "iTerm2 config imported from dotfiles"

# Configure and record
dev-setup config "set default shell to zsh"

# Generate a record
dev-setup generate "shell profile backup"

# Search across all logs
dev-setup search "homebrew"

# View summary statistics
dev-setup stats

Metadata

Author@ckchzh
Stars3562
Views0
Updated2026-03-29
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-ckchzh-dev-setup": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.