{"id":28146363,"url":"https://github.com/shanksxz/quickcmd","last_synced_at":"2026-03-07T14:02:28.899Z","repository":{"id":235268036,"uuid":"790424796","full_name":"shanksxz/quickcmd","owner":"shanksxz","description":"A CLI to save, search, and run your favorite shell commands instantly. Stop Googling the same damn commands","archived":false,"fork":false,"pushed_at":"2025-07-05T07:17:39.000Z","size":98,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-13T18:47:40.772Z","etag":null,"topics":["cli","comma","terminal-based"],"latest_commit_sha":null,"homepage":"https://quickcmd.xyz","language":"TypeScript","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/shanksxz.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}},"created_at":"2024-04-22T21:17:34.000Z","updated_at":"2025-07-05T10:11:57.000Z","dependencies_parsed_at":"2024-05-06T21:25:17.935Z","dependency_job_id":"859bcfc4-9cd1-4998-9d27-0b669da033a5","html_url":"https://github.com/shanksxz/quickcmd","commit_stats":null,"previous_names":["shanksxz/quickcmd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shanksxz/quickcmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fquickcmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fquickcmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fquickcmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fquickcmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shanksxz","download_url":"https://codeload.github.com/shanksxz/quickcmd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fquickcmd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30216496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T13:35:13.914Z","status":"ssl_error","status_checked_at":"2026-03-07T13:35:13.569Z","response_time":53,"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":["cli","comma","terminal-based"],"created_at":"2025-05-14T23:12:30.663Z","updated_at":"2026-03-07T14:02:28.848Z","avatar_url":"https://github.com/shanksxz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quickcmd\n\nquickcmd is a command-line interface (CLI) tool that allows you to save and manage frequently used commands locally. It provides a convenient way to store, retrieve, add, update, and delete commands, making it easier to access them whenever needed through your CLI only.\n\n## Installation\n\nTo get started with quickcmd, simply run the following command to install it globally:\n\n```bash\nnpm install -g quickcmd\n```\n\n## Usage\n\n### Setup\n\nAfter installation, use `-d` to create the necessary directory for storing your commands. This step only needs to be done once, after the initial installation.\n\n```bash\nqk -d\n```\n\n### Saving a Command\n\nTo save a command, use the `-t` or `--title` option with `-c` or `--command`. Once entered, the command will be saved successfully.\n\n```bash\n❯ qk -t \u003ctitle\u003e -c \u003ccommand\u003e\n\nex:-\nqk -t \"docker\" -c \"docker ps\"\n```\n\n### Retrieving Commands\n\nTo retrieve commands, use the `-g` or `--get` option\n\n```bash\nqk -g \u003ctitle\u003e\n\nex:-\nqk -g docker\n```\n\n### Updating a Command\n\nTo update a command, use the `-e` or `--edit` option\n\n```bash\nqk -e \u003ctitle\u003e\n\nex:-\nqk -e docker\n\n```\n### Removing a Command\n\nTo remove a command, use the `-r` or `--remove` option\n\n```bash\nqk -r \u003ctitle\u003e\n\nex:-\nqk -r docker\n```\n\n### Execute a Command\nYou can directly execute command for an particular \"title\" you saved\n\u003e Note: This is under testing, might not work as expected\n\n```bash\nqk -x \u003ctitle\u003e\n\nex:-\n\n❯ qk -x npm\n√ command · npm -v\n10.5.0\n```\n### Summary\n\n```bash\nUsage: qk [options]\n\nOptions:\n  --version          output the version number\n  -c, --cmd      Save a command\n  -t, --title        Title of the command\n  -g, --get          Get a command\n  -e, --edit         Edit a command\n  -r, --remove       Remove a command\n  -d, --dir          Create a directory for storing commands\n  -x, --execute      Execute a command\n  -h, --help         display help for command\n```\n\n### Data Storage\n\nYour commands are stored in a JSON file located at `%LOCALAPPDATA%/qk/data.json` (Windows), Here's an example of how the data is structured:\n\n```bash\n[\n    {\n        \"title\": \"prisma\",\n        \"commands\": [\n            \"npx prisma init\"\n        ]\n    }\n]\n```\n\n### Contributing\n\nContributions are welcome! If you find any issues or have ideas for improvements, please open an issue or submit a pull request on the GitHub repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanksxz%2Fquickcmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshanksxz%2Fquickcmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanksxz%2Fquickcmd/lists"}