{"id":31757804,"url":"https://github.com/iepathos/go-claude-code","last_synced_at":"2026-02-17T00:31:31.370Z","repository":{"id":303680578,"uuid":"1016314635","full_name":"iepathos/go-claude-code","owner":"iepathos","description":"Go starter template optimized for Claude Code.","archived":false,"fork":false,"pushed_at":"2025-07-12T03:36:26.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-09T20:02:18.359Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Just","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iepathos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-08T20:22:46.000Z","updated_at":"2025-07-12T03:36:29.000Z","dependencies_parsed_at":"2025-07-08T21:41:02.608Z","dependency_job_id":"ab4022e2-1431-4d17-b2ad-a180050c0b09","html_url":"https://github.com/iepathos/go-claude-code","commit_stats":null,"previous_names":["iepathos/go-claude-code"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iepathos/go-claude-code","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iepathos%2Fgo-claude-code","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iepathos%2Fgo-claude-code/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iepathos%2Fgo-claude-code/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iepathos%2Fgo-claude-code/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iepathos","download_url":"https://codeload.github.com/iepathos/go-claude-code/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iepathos%2Fgo-claude-code/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29526676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T21:45:09.491Z","status":"ssl_error","status_checked_at":"2026-02-16T21:44:58.452Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-09T20:01:20.085Z","updated_at":"2026-02-17T00:31:31.356Z","avatar_url":"https://github.com/iepathos.png","language":"Just","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go Claude Code Starter Template\n\nA comprehensive Go project starter template optimized for development with Claude Code. This template provides a well-structured foundation for building Go applications with AI-assisted development in mind.\n\n## Features\n\n- **Comprehensive CLAUDE.md**: Detailed project guidelines tailored for AI-assisted development\n- **Production-ready .gitignore**: Extensive ignore patterns for Go development\n- **Best practices baked in**: Error handling, testing, documentation, and architecture patterns\n- **Example project structure**: Based on a real-world computer vision application\n\n## Quick Start\n\n1. **Clone this template**:\n   ```bash\n   git clone https://github.com/iepathos/go-claude-code.git my-project\n   cd my-project\n   rm -rf .git\n   git init\n   ```\n\n2. **Review and customize CLAUDE.md**:\n   - Update the project overview section\n   - Modify technology stack to match your project\n   - Adjust architecture principles as needed\n   - Update the directory structure example\n\n3. **Initialize your Go module**:\n   ```bash\n   go mod init github.com/iepathos/my-project\n   ```\n\n4. **Create your project structure**:\n   ```bash\n   mkdir -p cmd/myapp internal/{app,config,models} pkg docs tests\n   ```\n\n## Project Structure\n\n```\nmy-project/\n├── .claude/           # Claude Code configuration (auto-generated)\n├── .gitignore         # Comprehensive Go gitignore\n├── CLAUDE.md          # AI development guidelines\n├── README.md          # This file\n├── go.mod             # Go module file\n├── cmd/               # Application entry points\n│   └── myapp/         # Main application\n├── internal/          # Private application code\n│   ├── app/           # Application core logic\n│   ├── config/        # Configuration management\n│   └── models/        # Data models\n├── pkg/               # Public packages\n├── docs/              # Documentation\n├── tests/             # Integration tests\n└── bin/               # Build outputs (gitignored)\n```\n\n## What's Included\n\n### .gitignore\n\nA comprehensive gitignore file covering:\n- Go build artifacts and binaries\n- IDE and editor files (VS Code, IntelliJ, Vim)\n- OS-specific files (macOS, Windows, Linux)\n- Test outputs and coverage reports\n- Temporary files and logs\n- Environment and configuration files\n- Database and archive files\n- Project-specific patterns\n\n### CLAUDE.md\n\nDetailed guidelines for AI-assisted development including:\n\n1. **Architecture Principles**:\n   - Error handling patterns\n   - Resource management\n   - Concurrency and thread safety\n   - Dependency injection\n\n2. **Code Standards**:\n   - Documentation requirements\n   - Testing standards\n   - Logging patterns\n   - File naming conventions\n\n3. **Development Workflow**:\n   - Feature development process\n   - Code review checklist\n   - Performance considerations\n   - Security best practices\n\n4. **Tool Recommendations**:\n   - Using ripgrep for fast code search\n   - Go toolchain usage\n   - Profiling and debugging\n\n5. **Example Prompts**:\n   - Feature implementation\n   - Bug fixes\n   - Code refactoring\n\n## Working with Claude Code\n\n### Best Practices\n\n1. **Clear Context**: CLAUDE.md provides Claude with comprehensive context about your project's standards and patterns.\n\n2. **Structured Prompts**: Use the example prompts in CLAUDE.md as templates for your requests.\n\n3. **Incremental Development**: Break large features into smaller, testable increments.\n\n4. **Test-Driven**: Ask Claude to write tests alongside implementations.\n\n### Example Usage\n\n```bash\n# Start Claude Code in your project\nclaude code .\n\n# Example prompts:\n\"Implement a REST API server with health check endpoint following our project standards\"\n\"Create a configuration system using Viper with environment variable support\"\n\"Add comprehensive unit tests for the user service with mocking\"\n```\n\n## Customization Guide\n\n### Adapting the Template\n\n1. **Update CLAUDE.md**:\n   - Replace \"Gazelle Eye Tracking Project\" with your project name\n   - Update the technology stack section\n   - Modify the directory structure to match your needs\n   - Adjust coding standards to your team's preferences\n\n2. **Modify .gitignore**:\n   - Remove project-specific sections (e.g., Gazelle-specific, eye tracking)\n   - Add patterns specific to your project\n   - Keep the general Go and development tool patterns\n\n3. **Add Project-Specific Files**:\n   - Create a Makefile for common tasks\n   - Add GitHub Actions workflows\n   - Include Docker configuration if needed\n\n### Extending the Template\n\nConsider adding:\n- Pre-commit hooks configuration\n- CI/CD pipeline templates\n- Dockerfile and docker-compose.yml\n- Kubernetes manifests\n- API documentation templates\n- Database migration setup\n\n## Contributing\n\nIf you have suggestions for improving this template:\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your improvements\n4. Submit a pull request\n\n## 📝 License\n\nThis template is provided as-is for use in your own projects. Customize the license as needed for your specific use case.\n\n## Acknowledgments\n\nThis template is based on real-world Go development experience and best practices from the Go community.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiepathos%2Fgo-claude-code","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiepathos%2Fgo-claude-code","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiepathos%2Fgo-claude-code/lists"}