mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 15:50:12 -04:00
Replace generate-codex.sh with unified generate.sh that produces both
claude/ and codex/ output from template source files.
Agent bodies use ${PLANS_DIR}, ${WEB_SEARCH}, ${SEARCH_TOOLS} placeholders
expanded per-target via envsubst. Skills and rules made tool-agnostic
(no Claude tool names or .claude/ paths). Orchestrate skill stays
Claude-only.
install.sh now symlinks from claude/agents/ instead of agents/ directly.
flake.nix adds gettext (envsubst) to devShell.
17 lines
929 B
Markdown
17 lines
929 B
Markdown
# Tool & Approach Philosophy
|
|
|
|
- Prefer tools and solutions that are declarative and reproducible over imperative one-offs
|
|
- Portability across dev environments is a first-class concern — avoid hardcoding machine-specific paths or assumptions
|
|
- The right tool for the job is the right tool — no language/framework bias, but favor things that can be version-pinned and reproduced
|
|
|
|
# Parallelism
|
|
|
|
- Always parallelize independent work — tool calls, file reads, searches
|
|
- When a task has components that don't depend on each other, run them concurrently by default
|
|
- Sequential execution should be the exception, not the default
|
|
|
|
# Context Management
|
|
|
|
- Use subagents for exploratory reads and investigations to keep the main context clean
|
|
- Prefer scoped file reads (offset/limit) over reading entire large files
|
|
- When a task is complete or the topic shifts significantly, suggest clearing context or starting a new session
|