| Agent | Project | User |
|---|---|---|
| ClaudeCode | <REPO_DIR>/CLAUDE.md<REPO_DIR>/.claude/CLAUDE.md |
~/.claude/CLAUDE.md |
| Gemini-CLI | <REPO_DIR>/GEMINI.md |
~/.gemini/GEMINI.md |
| Codex-CLI | <REPO_DIR>/AGENTS.md |
~/.codex/AGENTS.md |
| Cursor | <REPO_DIR>/AGENTS.md<REPO_DIR>/.cursor/rules/AGENTS.md |
~/.cursor/rules/*.md |
| CopilotChat | <REPO_DIR>/.github/copilot-instructions.md |
~/Library/Application Support/Code/User/prompts/*.instructions.md |
| Cline | /.clinerules/*.md |
~/Documents/Cline/Rules/*.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "agents": [ | |
| "claude-code", | |
| "gemini-cli" | |
| ], | |
| "mcpServers": { | |
| "markdownit": { | |
| "command": "docker", | |
| "args": [ | |
| "run", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [env] | |
| _.file = { path = '.env', tools = true } | |
| _.python.venv = { path = '.venv', create = true, python = '3.11' } | |
| UV_PYTHON = { value = "", tools = true } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # copilot-ps: Monitor GitHub Copilot CLI sessions running in tmux panes | |
| WATCH_INTERVAL=1 | |
| BOLD='\033[1m' | |
| GREEN='\033[32m' | |
| YELLOW='\033[33m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # claude-ps: Monitor Claude Code sessions running in tmux panes | |
| WATCH_INTERVAL=1 | |
| # send subcommand constants | |
| MAX_MESSAGE_BYTES=102400 | |
| WAIT_AFTER_PASTE="${CLAUDE_PS_WAIT_AFTER_PASTE:-0.2}" |
- Skills自動最適化:empirical-prompt-tuning
- Skill作成:skill-creator
- コンテキスト圧縮:caveman
- 開発プロセス:brainstoming,tdd,sytematic-debugging
- https://github.com/obra/superpowers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import json | |
| import os | |
| import re | |
| import shutil | |
| import subprocess | |
| import sys | |
| import tempfile |
OlderNewer

