1
0
Fork 0
mirror of https://github.com/jimeh/agentic.git synced 2026-02-19 13:36:38 +00:00
Shared configuration and rules for AI coding agents (Claude Code, Codex, etc.)
Find a file
Jim Myhrberg 8365bbc529
fix: allow git checkout -b in commit-push-pr command
The allowed-tools list only had `git checkout --branch` but the short
flag `-b` is the more common form for creating new branches.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 16:36:41 +00:00
.claude feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
claude fix: allow git checkout -b in commit-push-pr command 2026-02-18 16:36:41 +00:00
codex feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
docs/references feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
skills/frontend-design-systems feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
.editorconfig feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
AGENTS.md docs: slim down README, add doc-maintenance reminder to AGENTS.md 2026-02-15 14:55:50 +00:00
CLAUDE.md docs: add AGENTS.md with CLAUDE.md as thin reference 2026-02-15 14:33:36 +00:00
README.md Merge pull request #2 from jimeh/claude/verify-requirements-setup-S3fvJ 2026-02-16 15:14:05 +00:00
RULES.md feat: initial agentic config repo 2026-02-15 14:23:17 +00:00
setup.sh feat: initial agentic config repo 2026-02-15 14:23:17 +00:00

agentic

My personal AI coding agent configuration, with any quirks, oddities, opinionated rules, and hallucination-inducing prompt fragments I live with on a daily basis.

One repo, one set of rules, symlinked into every agent's config directory. Supports Claude Code, Codex, and any tool that reads AGENTS.md.

Warning

This is my personal config. It is not a starter kit, a framework, or a best-practices guide. If you use it as-is, things will probably work — but they'll work my way, which may not be your way. Browse for ideas, steal what's useful, but don't say I didn't warn you.

Quick Start

git clone https://github.com/jimeh/agentic.git ~/.config/agentic
cd ~/.config/agentic
./setup.sh            # create symlinks (skips existing)
./setup.sh --force    # replace existing (backs up to .bak)

This creates symlinks from the repo into ~/.claude/, ~/.agents/, and ~/.codex/. Run ./setup.sh --help for details.

What's Inside

  • RULES.md — Single source of truth for all agent behavior rules. Symlinked as the global rules file for each supported agent. Edit this file directly — never edit the symlink targets.
  • claude/ — Claude Code settings, statusline script, and slash commands.
  • codex/ — OpenAI Codex config.
  • skills/ — Custom skills (auto-discovered by setup.sh).
  • docs/references/ — External articles and guides.

Commands and skills are auto-discovered — drop a file in the right place, re-run setup.sh, done.

Requirements

  • Bash 3.2+ (macOS default works)
  • For symlink resolution, setup.sh tries realpath first, then platform-specific fallbacks:
    • macOS: python3, python, perl, or readlink
    • Linux: readlink -f (part of coreutils)

License

This is a personal configuration repository. Feel free to use it as inspiration for your own setup, but there are no guarantees it won't teach your agents some questionable habits.