Adds decisions and process-lessons from recent reflections.
Updates decompose and orchestrate SKILL.md with operational improvements.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
All paths now point to ~/dev/claude/projects/best-practices/ instead of
claude-foundations/best-practices/. The settings.yaml remains in
claude-foundations (where the pipeline config lives).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
New skills for container agent task orchestration:
- /decompose: break tasks into subtasks with dependency graph, write .agent-tasks.json
- /orchestrate: check task state, launch container agents in git worktrees, poll for completion
Updated with learnings from first real run (agent-runtimes M3, 9 tasks):
- Prompts must end with "run pytest and fix failures"
- State import conventions explicitly in prompts
- Warn about uncommitted files before decomposing (worktrees need committed content)
- Copy dependency outputs into downstream worktrees before launching
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replace non-ASCII characters in log and distill-best-practices
frontmatter that silently prevented skill loading. Simplify distill
skill instructions. Update install.sh for new skills.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Scan mode checks formatter setup; run mode formats all project files.
Works with the claude-foundations formatter infrastructure.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Gathers CLAUDE.md, CONTEXT.md, MEMORY.md, BESTPRACTICES.md, directory
trees, and git status from the directory hierarchy after /clear.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
unreflected-logs, git-status-report, check-skills, and validate-skill
all exit 1 as a status signal when issues are found. The skill's bang-
command syntax treated this as a failure, aborting mid-run. Append
`|| true` so informational output is always captured.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Claude Code's Bash permission checker rejects \${VAR} parameter
substitution in skill ! commands. Replace all occurrences with \$VAR
(identical shell expansion) across log, reflect-logs, and
distill-best-practices skills. Rewrite \${VAR:-default} to use
test -n / || pattern instead.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Skills used absolute paths (~/dev/claude/projects/claude-foundations/...)
which get blocked by Claude Code's sandbox when running from other projects.
Changed to relative paths (../claude-foundations/) with local-first fallback
and inline defaults so skills work regardless of sandbox restrictions.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Matches the move of best-practices/INDEX.md to BESTPRACTICES.md in
claude-foundations root for context-load auto-discovery.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- /log: end-of-session capture of decisions, gotchas, open questions to memory/log/
- /reflect-logs: processes session logs into topic memory files with staleness detection
- /distill-best-practices: cross-project best practices extraction with interactive proposals
- README.md: updated skill table with all three new skills
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The !`command` blocks in SKILL.md go through Claude Code's Bash permission
checker, which rejects $() command substitution. Simplified the git log
command, replaced dynamic verify script path with a Read tool instruction,
and narrowed allowed-tools to specific command patterns. Also documented
the constraints in CLAUDE.md for future skill development.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Reusable Claude Code skills shared across projects via symlinks
into ~/.claude/skills/. Includes the /reflect skill for structured
milestone reflections.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>