{"id":16353478,"url":"https://github.com/moviendome/qq_cli","last_synced_at":"2026-01-02T04:52:52.314Z","repository":{"id":215593889,"uuid":"737755783","full_name":"moviendome/qq_cli","owner":"moviendome","description":"Automate and Simplify Tasks in Development Environments Executing Context-Aware Commands","archived":false,"fork":false,"pushed_at":"2024-09-04T02:54:43.000Z","size":21,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-28T21:21:10.285Z","etag":null,"topics":["automation","cli","developer-tools","nodejs","rails","rust"],"latest_commit_sha":null,"homepage":"https://moviendo.me/qq-cli/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moviendome.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}},"created_at":"2024-01-01T11:31:00.000Z","updated_at":"2024-12-27T22:40:54.000Z","dependencies_parsed_at":"2024-11-07T16:48:56.593Z","dependency_job_id":null,"html_url":"https://github.com/moviendome/qq_cli","commit_stats":null,"previous_names":["moviendome/qq_cli"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviendome%2Fqq_cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviendome%2Fqq_cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviendome%2Fqq_cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviendome%2Fqq_cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moviendome","download_url":"https://codeload.github.com/moviendome/qq_cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239635520,"owners_count":19672190,"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","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":["automation","cli","developer-tools","nodejs","rails","rust"],"created_at":"2024-10-11T01:29:41.283Z","updated_at":"2026-01-02T04:52:52.304Z","avatar_url":"https://github.com/moviendome.png","language":"Rust","funding_links":["https://www.buymeacoffee.com/moviendome"],"categories":[],"sub_categories":[],"readme":"# QQ CLI\n\n```\n ________  ________           ________  ___       ___     \n|\\   __  \\|\\   __  \\         |\\   ____\\|\\  \\     |\\  \\    \n\\ \\  \\|\\  \\ \\  \\|\\  \\        \\ \\  \\___|\\ \\  \\    \\ \\  \\   \n \\ \\  \\\\\\  \\ \\  \\\\\\  \\        \\ \\  \\    \\ \\  \\    \\ \\  \\  \n  \\ \\  \\\\\\  \\ \\  \\\\\\  \\        \\ \\  \\____\\ \\  \\____\\ \\  \\ \n   \\ \\_____  \\ \\_____  \\        \\ \\_______\\ \\_______\\ \\__\\\n    \\|___| \\__\\|___| \\__\\        \\|_______|\\|_______|\\|__|\n          \\|__|     \\|__|                                 \n```\n\n![GitHub Workflow Status](http://img.shields.io/github/actions/workflow/status/moviendome/qq_cli/rust.yml?branch=main\u0026style=for-the-badge)\n![Rust](https://img.shields.io/badge/Made%20with%20Rust-blueviolet.svg?style=for-the-badge\u0026logo=rust)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)\n\nContext-aware CLI that runs the right commands for your project type.\n\n## Installation\n\n```bash\ngit clone https://github.com/moviendome/qq_cli.git\ncd qq_cli\nmake build \u0026\u0026 make install\n```\n\n## Usage\n\n```bash\nqq              # Interactive mode with autocomplete\nqq start        # Run command directly\nqq --help       # Show help\n```\n\n## Supported Projects\n\n| Project | Detection |\n|---------|-----------|\n| Rails | `Gemfile` |\n| Middleman | `Gemfile` + `source/` |\n| Next.js | `package.json` + `next.config.{js,mjs,ts}` |\n| Node.js | `package.json` |\n| Rust | `Cargo.toml` |\n\n## Commands\n\n### Project Commands\n\n| Command | Alias | Rails | Middleman | Next.js | Node.js | Rust |\n|---------|-------|-------|-----------|---------|---------|------|\n| `install` | `i` | `bundle install` | `bundle install` | `npm install` | `npm install` | `cargo build` |\n| `start` | `s` | `bin/dev` or `bin/rails s` | `bundle exec middleman serve` | `npm run dev` | `npm start` | `cargo run` |\n| `test` | `t` | `bin/rspec` or `bin/rails test` | - | `npm test` | `npm test` | `cargo test` |\n| `console` | `c` | `bin/rails c` | - | - | - | - |\n| `migrate` | `m` | `bin/rails db:migrate` | - | - | - | - |\n| `routes` | `r` | `bin/rails routes` | - | - | - | - |\n| `deploy` | `d` | `kamal deploy` * | `kamal deploy` * | `kamal deploy` * | `kamal deploy` * | `kamal deploy` * |\n\n\\* Available when `.kamal` directory exists\n\n### Git Commands\n\n| Command | Action |\n|---------|--------|\n| `g` | `git status` |\n| `gl` | `git log` |\n| `gp` | `git pull` |\n| `gP` | `git push` |\n| `gm` | `git checkout main` |\n| `ga` | `git commit --amend --no-edit` |\n\n## Examples\n\n```bash\n# In a Rails project\n$ qq start\nDetected: Rails\n# Runs: bin/dev\n\n# In a Next.js project\n$ qq test\nDetected: NextJS\n# Runs: npm test\n\n# In a Rust project\n$ qq i\nDetected: Rust\n# Runs: cargo build\n```\n\n## Support\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/moviendome)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoviendome%2Fqq_cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoviendome%2Fqq_cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoviendome%2Fqq_cli/lists"}