Just some opinionated sets of skills and subagents that I personally find useful for using Claude Code.
- The user acts as a project manager. The user must be kept in loop, capable of defining how the workflow works, and must not be doing things without actual understanding of the goal.
- Embrace agentic evolution. Let agents modify their own configurations and knowledge to match the project workflow.
- Workflows are built in a structured way. If something is used repeatedly, it should be extracted.
- Move fast by securing things. Use things like sandbox and automated permission checking as much as possible, to remove the human in the loop as much as possible.
curl -fsSL https://raw.githubusercontent.com/TheCactusBlue/agentic-evolution/main/setup.sh -o setup.sh
chmod +x setup.sh
./setup.sh --target ~/Projects/my-appThe script clones the repo, copies .claude/ configs (skills, agents, settings) into your project, and cleans up automatically. Defaults to the current directory if --target is omitted. Use --dry-run to preview changes.