{"id":31828303,"url":"https://github.com/unclecode/ucli","last_synced_at":"2025-10-11T19:28:21.185Z","repository":{"id":265659165,"uuid":"896432289","full_name":"unclecode/ucli","owner":"unclecode","description":"Unclecode CLIs Collection: A curated list of useful CLIs that I use to boost up my productivity when I am coding.","archived":false,"fork":false,"pushed_at":"2025-01-15T09:58:23.000Z","size":16,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T10:57:50.460Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/unclecode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-11-30T10:53:09.000Z","updated_at":"2025-10-04T15:46:35.000Z","dependencies_parsed_at":"2024-11-30T11:28:57.489Z","dependency_job_id":"7d857167-345f-400c-b3cd-de374b5c4056","html_url":"https://github.com/unclecode/ucli","commit_stats":null,"previous_names":["unclecode/ucli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unclecode/ucli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclecode%2Fucli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclecode%2Fucli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclecode%2Fucli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclecode%2Fucli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unclecode","download_url":"https://codeload.github.com/unclecode/ucli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclecode%2Fucli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008423,"owners_count":26084460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-11T19:28:12.697Z","updated_at":"2025-10-11T19:28:21.179Z","avatar_url":"https://github.com/unclecode.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UCLI - Unclecode CLI Collection\n\nA collection of powerful CLI tools to enhance developer workflow.\n\n## Available Commands\n\n| Command | Description | Config Required |\n|---------|-------------|-----------------|\n| `gitit` | AI-powered commit message \u0026 changelog generator | None |\n| `gitis` | GitHub issues analyzer and tracker | `GITHUB_PERSONAL_ACCESS_TOKEN` |\n| `ccat`  | Enhanced file concatenation with filters and tree view | None |\n\n## Installation\n\n``` bash\n# Install latest version from GitHub\npip install git+https://github.com/unclecode/ucli.git\n\n# Update to latest version\npip install --upgrade git+https://github.com/unclecode/ucli.git\n```\n\n## Configuration\n\n### GitHub Token\nRequired only for `gitis`:\n\n``` bash\n# Add to your ~/.bashrc or ~/.zshrc\nexport GITHUB_PERSONAL_ACCESS_TOKEN=\"your-token-here\"\n```\n\n## Command Usage Guide\n\n### gitit - Git Commit Helper\nAnalyzes uncommitted changes and generates AI-powered commit messages and changelogs.\n\nOutput Location: `.ucli/` directory in your project\n- `.ucli/changelog.md`: Formatted changelog in Markdown\n- `.ucli/changelog.json`: Structured data for programmatic use\n\n``` bash\n# From your git repository root:\n\n# 1. Make your changes\ngit add file1.py file2.js\n\n# 2. Generate commit message \u0026 changelog\ngitit\n\n# 3. Optionally review generated files in .ucli/\n# 4. Apply the commit with generated message\ngitit --commit\n\n# Additional options:\ngitit --branch      # Analyze changes since branching from main\ngitit --help        # Show all available options\n```\n\n### gitis - GitHub Issues Manager\nAnalyzes and tracks GitHub issues for your repository.\n\nOutput Location: `.ucli/git_issues.md`\n\n``` bash\n# Must be run from a git repository directory\n\n# List all open issues\ngitis --state open\n\n# Find issues with specific keywords\ngitis --keywords bug feature\n\n# Find issues where you were last commenter\ngitis --owner-last\n\n# Additional options:\ngitis --help        # Show all available options\n```\n\n### ccat - File Concatenation Tool\nConcatenates and displays file contents with optional filters and a directory tree view.\n\n``` bash\n# Basic usage:\nccat dir1 dir2\n\n# Include only specific file types:\nccat -i '\\.py$' dir1\n\n# Exclude files or directories:\nccat -e 'test' dir1 dir2\n\n# Bypass .gitignore rules:\nccat -g dir1\n\n# Additional options:\nccat --help         # Show all available options\n```\n\n## Project Organization\n\n``` plaintext\n.ucli/                      # Created in your project directory\n├── changelog.md           # Latest generated changelog\n├── changelog.json        # Structured changelog data\n└── git_issues.md        # Repository issues report\n\nyour-project/              # Your git repository\n├── .ucli/               # UCLI working directory\n├── .git/                # Git directory\n└── ...                  # Your project files\n```\n\n## Development Setup\n\n``` bash\n# Clone the repository\ngit clone https://github.com/unclecode/ucli.git\ncd ucli\n\n# Install in development mode\npip install -e .\n```\n\n## Adding UCLI to Your Workflow\n\n1. Initialize your git repository (if not already done):\n  ```bash\n  git init\n  ```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclecode%2Fucli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funclecode%2Fucli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclecode%2Fucli/lists"}