{"id":36734186,"url":"https://github.com/gboliknow/github_user_activity","last_synced_at":"2026-01-12T12:17:04.254Z","repository":{"id":253286046,"uuid":"842590684","full_name":"gboliknow/github_user_activity","owner":"gboliknow","description":"A Go-based CLI tool for fetching GitHub user data, including activity, profile information, and repositories, with file-based caching for improved performance.","archived":false,"fork":false,"pushed_at":"2025-09-01T10:50:50.000Z","size":37,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-01T12:44:45.284Z","etag":null,"topics":["caching","github","user-activity-monitoring"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gboliknow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-14T16:56:16.000Z","updated_at":"2025-09-01T10:50:54.000Z","dependencies_parsed_at":"2025-09-01T12:15:56.173Z","dependency_job_id":"adfdba7c-fb4e-4456-a936-11035701864e","html_url":"https://github.com/gboliknow/github_user_activity","commit_stats":null,"previous_names":["gboliknow/github_user_activity"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gboliknow/github_user_activity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gboliknow%2Fgithub_user_activity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gboliknow%2Fgithub_user_activity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gboliknow%2Fgithub_user_activity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gboliknow%2Fgithub_user_activity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gboliknow","download_url":"https://codeload.github.com/gboliknow/github_user_activity/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gboliknow%2Fgithub_user_activity/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T10:58:46.209Z","status":"ssl_error","status_checked_at":"2026-01-12T10:58:42.742Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["caching","github","user-activity-monitoring"],"created_at":"2026-01-12T12:17:03.579Z","updated_at":"2026-01-12T12:17:04.244Z","avatar_url":"https://github.com/gboliknow.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# GitHub User Activity CLI\n\nA feature-rich command-line interface tool to fetch and display GitHub user information, including profiles, activities, and repositories.\n\n## Table of Contents\n- [Features](#features)\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Usage](#usage)\n  - [Basic Commands](#basic-commands)\n  - [Interactive Mode](#interactive-mode)\n  - [Output Formats](#output-formats)\n- [Development](#development)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- 🔍 Fetch user profiles with detailed information\n- 📊 Display recent GitHub activities with filtering\n- 📚 List and explore user repositories\n- � Interactive mode for easy navigation\n- 🎨 Colored output for better readability\n- 💾 Smart caching for faster responses\n- ⚡ Rate limit handling for GitHub API\n- ⚙️ Configurable settings and preferences\n- 🌟 View user issues and starred repositories\n\n## Installation\n\n1. Ensure you have Go installed on your system\n2. Clone the repository:\n```bash\ngit clone https://github.com/gboliknow/github_user_activity.git\ncd github_user_activity\n```\n\n3. Build the project:\n```bash\n# Using make\nmake build\n\n# Or using go\ngo build\n```\n\n## Configuration\n\nSet up your preferences using the config command:\n\n```bash\n# Set GitHub token\ngo run main.go config set --token \"your_github_token\"\n\n# Set default user\ngo run main.go config set --user \"your_username\"\n\n# Set output format\ngo run main.go config set --format \"json\"\n\n# View current settings\ngo run main.go config view\n```\n\n## Usage\n\n### Basic Commands\n\n1. **Profile Command**:\n```bash\n# View user profile\ngo run main.go profile gboliknow\n\n# With different output format\ngo run main.go profile gboliknow -o json\n```\n\n2. **Activity Command**:\n```bash\n# View recent activities\ngo run main.go activity gboliknow\n\n# Filter by activity type\ngo run main.go activity gboliknow -t PushEvent\n\n# Limit number of results\ngo run main.go activity gboliknow -l 5\n\n# Use GitHub token\ngo run main.go activity gboliknow -k \"your_token\"\n```\n\n3. **Repository Command**:\n```bash\n# List repositories\ngo run main.go repo gboliknow\n```\n\n### Interactive Mode\n\nLaunch the interactive interface:\n```bash\ngo run main.go interactive\n```\n\nFeatures available in interactive mode:\n- View profile information\n- Check recent activities\n- List repositories\n- View issues\n- Check starred repositories\n- Easy navigation with arrow keys\n\n### Output Formats\n\nSupported output formats:\n- **Table** (default): Colored, well-formatted tables\n- **JSON**: Machine-readable JSON format\n\nSpecify format using the -o flag:\n```bash\ngo run main.go profile gboliknow -o json\n```\n\n## Development\n\n### Project Structure\n```\ngithub_user_activity/\n├── cmd/\n│   ├── activity.go       # Activity command\n│   ├── cache_activity.go # Caching system\n│   ├── colors.go        # Color formatting\n│   ├── config.go        # Configuration\n│   ├── config_cmd.go    # Config command\n│   ├── interactive.go   # Interactive mode\n│   ├── interactive_cmd.go # Interactive command\n│   ├── output.go        # Output formatting\n│   ├── profile.go       # Profile command\n│   ├── rate_limit.go    # Rate limiting\n│   ├── repo.go          # Repository command\n│   ├── root.go          # Root command\n│   ├── stars_issues.go  # Stars and issues\n│   └── types.go         # Data structures\n├── main.go              # Entry point\n├── Makefile            # Build commands\n└── README.md           # Documentation\n```\n\n### Available Make Commands\n```bash\nmake build          # Build the binary\nmake test          # Run tests\nmake clean         # Clean build files\nmake test-coverage # Run tests with coverage\nmake deps          # Update dependencies\nmake install       # Install the binary\nmake run          # Run the application\nmake help         # Show all commands\n```\n\n### Running Tests\n```bash\n# Run all tests\ngo test ./... -v\n\n# Run specific tests\ngo test -v ./cmd -run TestFetchUserActivity\n\n# Run tests with coverage\nmake test-coverage\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## Acknowledgments\n\n- [Cobra](https://github.com/spf13/cobra) for the CLI framework\n- [Go](https://golang.org/) for the programming language\n- [promptui](https://github.com/manifoldco/promptui) for interactive prompts\n- [fatih/color](https://github.com/fatih/color) for colored output\n- Project inspired by [roadmap.sh projects](https://roadmap.sh/projects/github-user-activity)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgboliknow%2Fgithub_user_activity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgboliknow%2Fgithub_user_activity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgboliknow%2Fgithub_user_activity/lists"}