Files
claude-code/main.py
2025-12-04 15:28:21 -05:00

10 lines
308 B
Python

from src.agent import ClaudeCodeConfig, ClaudeCodeAgent
config = ClaudeCodeConfig()
agent = ClaudeCodeAgent(config)
if __name__ == "__main__":
result = agent("Implement a todo list application")
agent.push_to_hub("farouk1/claude-code", with_code=True, commit_message="With code")
print(result)