aixle .uk
v0.1 · curated weekly

The command-line
arsenal for AI engineers

Prompts that actually ship code. Configs that survive Mondays. Scripts that go in your dotfiles and stay there. No fluff, no hype — just output.

1.2k stars · 34 contributors · MIT
~/aixle zsh
terry@aixle : ~ $ claude --prompt "refactor this sync Python module to async"
Analyzing dependencies: requests → httpx ...
Locating blocking I/O, rewriting as async def
Generating 3 pytest-asyncio cases
Done. Estimated speedup +4.2×
terry@aixle : ~ $

// prompts

The prompt matrix

Indexed by role × scenario, versioned, with example output.

View all (87) →
Architect / Refactor

You are a senior software architect. Review the coupling of this module, propose hard boundaries and a step-by-step migration plan...

v1.3 Copy →
QA / Test cases

Given this API signature, produce 5 equivalence-class tests + 3 boundary cases in pytest style with parametrize...

v1.3 Copy →
DBA / SQL tuning

Analyze this query's plan on PostgreSQL 16, identify missing indexes and suggest a rewrite that preserves semantics...

v1.3 Copy →
SRE / Chaos drill

Design 3 chaos engineering scenarios for this service. Include trigger commands and concrete rollback procedures...

v1.3 Copy →
Frontend / A11y audit

Audit this component for WCAG AA. List every violation with the smallest patch that fixes it without regressing UX...

v1.3 Copy →
Data / ETL pipeline

Clean, dedupe and aggregate this CSV, then emit a same-vs-anomaly report and a one-paragraph explanation...

v1.3 Copy →

// claude code

Configs that just work

Hand-picked .claude/settings.json, hooks, status-line snippets and slash commands — covering the workflows you actually do. Every config ships with a minimal runnable example.

  • Safe allow / deny matrix (never delete by accident)
  • Hook templates: lint-on-save + test-on-commit
  • Plan / 1M-context / Bedrock switching presets
.claude/settings.json json
{
  "permissions": {
    "allow": [
      "Bash(pnpm:*)",
      "Bash(git status:*)",
      "Edit",
      "Write"
    ],
    "deny": ["Bash(rm -rf:*)"]
  },
  "model": "claude-opus-4-7",
  "env": {
    "CLAUDE_CODE_USE_BEDROCK": "0"
  }
}

// cli scripts

The CLI library

Organized by scenario. Each script is dogfooded on a real machine. POSIX shell, fish, and Python — grab what you need.

Path Script
git/ auto-rebase.sh
docker/ prune-safe.sh
k8s/ ctx-switch.fish
ai/ claude-pipe.sh
ai/ prompt-bench.py
git/ blame-blame.sh