├── .aider.conf.yml ├── .claude └── commands │ └── prime.md ├── .env.sample ├── .gitignore ├── .mcp.sample.json ├── README.md ├── ai_docs ├── anthropic_web_search_tool.md ├── claude-code-tutorials.md ├── claude_code_best_practices.md ├── claude_code_tech.md ├── fc_openai_agents.md └── uv-single-file-scripts.md ├── aider_is_programmable_1.sh ├── aider_is_programmable_2.js ├── aider_is_programmable_2.py ├── anthropic_search.py ├── bonus ├── claude_code_inside_openai_agent_sdk_4_bonus.py └── starter_notion_agent.py ├── claude_code_is_programmable_1.sh ├── claude_code_is_programmable_2.js ├── claude_code_is_programmable_2.py ├── claude_code_is_programmable_3.py ├── claude_code_is_programmable_4.py ├── claude_code_is_programmable_5.py ├── claude_testing_v1.py ├── images ├── programmable-agentic-coding.png └── voice-to-claude-code.png ├── reset.sh ├── tests └── test_claude_testing_v1.py └── voice_to_claude_code.py /.aider.conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/.aider.conf.yml -------------------------------------------------------------------------------- /.claude/commands/prime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/.claude/commands/prime.md -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/.mcp.sample.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/README.md -------------------------------------------------------------------------------- /ai_docs/anthropic_web_search_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/anthropic_web_search_tool.md -------------------------------------------------------------------------------- /ai_docs/claude-code-tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/claude-code-tutorials.md -------------------------------------------------------------------------------- /ai_docs/claude_code_best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/claude_code_best_practices.md -------------------------------------------------------------------------------- /ai_docs/claude_code_tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/claude_code_tech.md -------------------------------------------------------------------------------- /ai_docs/fc_openai_agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/fc_openai_agents.md -------------------------------------------------------------------------------- /ai_docs/uv-single-file-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/ai_docs/uv-single-file-scripts.md -------------------------------------------------------------------------------- /aider_is_programmable_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/aider_is_programmable_1.sh -------------------------------------------------------------------------------- /aider_is_programmable_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/aider_is_programmable_2.js -------------------------------------------------------------------------------- /aider_is_programmable_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/aider_is_programmable_2.py -------------------------------------------------------------------------------- /anthropic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/anthropic_search.py -------------------------------------------------------------------------------- /bonus/claude_code_inside_openai_agent_sdk_4_bonus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/bonus/claude_code_inside_openai_agent_sdk_4_bonus.py -------------------------------------------------------------------------------- /bonus/starter_notion_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/bonus/starter_notion_agent.py -------------------------------------------------------------------------------- /claude_code_is_programmable_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_1.sh -------------------------------------------------------------------------------- /claude_code_is_programmable_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_2.js -------------------------------------------------------------------------------- /claude_code_is_programmable_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_2.py -------------------------------------------------------------------------------- /claude_code_is_programmable_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_3.py -------------------------------------------------------------------------------- /claude_code_is_programmable_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_4.py -------------------------------------------------------------------------------- /claude_code_is_programmable_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_code_is_programmable_5.py -------------------------------------------------------------------------------- /claude_testing_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/claude_testing_v1.py -------------------------------------------------------------------------------- /images/programmable-agentic-coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/images/programmable-agentic-coding.png -------------------------------------------------------------------------------- /images/voice-to-claude-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/images/voice-to-claude-code.png -------------------------------------------------------------------------------- /reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/reset.sh -------------------------------------------------------------------------------- /tests/test_claude_testing_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/tests/test_claude_testing_v1.py -------------------------------------------------------------------------------- /voice_to_claude_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/claude-code-is-programmable/HEAD/voice_to_claude_code.py --------------------------------------------------------------------------------