{"id":19783361,"url":"https://github.com/numonu/mitsco","last_synced_at":"2026-05-03T11:32:06.080Z","repository":{"id":206026267,"uuid":"715647488","full_name":"Numonu/mitsco","owner":"Numonu","description":"Command line tool to manage commit messages","archived":false,"fork":false,"pushed_at":"2023-11-08T14:29:49.000Z","size":45,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-27T09:16:02.420Z","etag":null,"topics":["command-line-tool","git","github","management","tool"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/mitsco","language":"JavaScript","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/Numonu.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":"2023-11-07T14:57:06.000Z","updated_at":"2023-11-09T01:39:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"8d178d63-6714-4eec-8b4a-f1d2af7a795e","html_url":"https://github.com/Numonu/mitsco","commit_stats":null,"previous_names":["numonu/mitsco"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Numonu/mitsco","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Numonu%2Fmitsco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Numonu%2Fmitsco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Numonu%2Fmitsco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Numonu%2Fmitsco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Numonu","download_url":"https://codeload.github.com/Numonu/mitsco/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Numonu%2Fmitsco/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32567196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["command-line-tool","git","github","management","tool"],"created_at":"2024-11-12T06:08:02.691Z","updated_at":"2026-05-03T11:32:06.076Z","avatar_url":"https://github.com/Numonu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003ccenter\u003e\n\n![Mitsco logo](/out/images/logo.png)\n\n# Mitsco\n\n**Command line tool to manage commit messages**\n\nMitsco is a command line tool that simplifies the creation of commits following specific and custom conventions, as well as allowing you to define the style of your commit messages. This streamlines the process of keeping track of changes to your project and encourages effective collaboration between team members.\n\n\u003c/center\u003e\n\n## Features\n\n-  🔥 **Custom Conventions** : Define your own conventions for commit messages according to the specific needs of your project.\n\n-  🤩 **Configurable Message Styling** : Customize the style of your commit messages with ease, using placeholders such as **%type%** and **%message%**.\n\n-  ⏳ **Easy to Use** : Mitsco command line interface is intuitive and easy to use, streamlining the process of creating conventional commits.\n\n## Installation\n\nTo start using Mitsco, install it as a global dependency using npm:\n\n```bash\nnpm install -g mitsco\n```\n\n## Usage\n\nTo start using Mitsco, simply run the command mitsco in the root directory of your Git repository:\n\n```bash\nmitsco\n```\n\nFollow the on-screen instructions to create commits following your custom conventions and message style.\n\n1. Select the type of commit you want to make:\n\n![step one](/out/images/step01.png)\n\n2. Add a custom message to the commit:\n\n![step two](/out/images/step02.png)\n\n3. Commit:\n\n![step three](/out/images/step03.png)\n\n## Customization\n\nYou can configure the conventions and style of commit messages by creating a configuration file called **mitsco.config.json** in the root directory of your project.\n\n### Style\n\nDefine the style of the commit messages. Use **%type%** for the commit type and **%message%** for your custom message.\n\n```json\n{\n    \"style\": \"%type% : %message%\"\n}\n```\n\n### Types\n\nThe type convention defines the categories of commits to be used. By default, Mitsco uses the types provided by [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).\n\n```json\n{\n    \"types\": [\n        {\n            \"type\": \"chore\",\n            \"description\": \"used for maintenance tasks, refactoring, dependency updates, etc.\"\n        },\n        {\n            \"type\": \"feat\",\n            \"description\": \"used to add a new feature.\"\n        },\n        {\n            \"type\": \"fix\",\n            \"description\": \"used to fix a bug or issue.\"\n        },\n        {\n            \"type\": \"refactor\",\n            \"description\": \"used for code changes that do not fix bugs or add new features.\"\n        },\n        {\n            \"type\": \"style\",\n            \"description\": \"used for changes that do not affect code functionality (e.g., code formatting or style changes).\"\n        },\n        {\n            \"type\": \"docs\",\n            \"description\": \"used for documentation changes.\"\n        },\n        {\n            \"type\": \"test\",\n            \"description\": \"used to add or improve tests.\"\n        }\n    ]\n}\n```\n\n## Contributions\n\nIf you want to contribute to Mitsco or report issues, visit the [contribution guide](/out/docs/contributing.md)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENCE.txt) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnumonu%2Fmitsco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnumonu%2Fmitsco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnumonu%2Fmitsco/lists"}