{"id":21274442,"url":"https://github.com/initx-collective/initx","last_synced_at":"2026-05-14T17:02:03.426Z","repository":{"id":258036527,"uuid":"874049520","full_name":"initx-collective/initx","owner":"initx-collective","description":"A more convenient scripting engine","archived":false,"fork":false,"pushed_at":"2026-04-14T11:12:49.000Z","size":923,"stargazers_count":10,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-02T21:06:24.752Z","etag":null,"topics":["initx"],"latest_commit_sha":null,"homepage":"","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/initx-collective.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-10-17T07:03:54.000Z","updated_at":"2026-04-14T11:12:49.000Z","dependencies_parsed_at":"2025-01-12T12:22:17.368Z","dependency_job_id":"964324de-738d-4b0b-b947-90cd9d567aae","html_url":"https://github.com/initx-collective/initx","commit_stats":null,"previous_names":["imba97/initx","initx-collective/initx"],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/initx-collective/initx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initx-collective%2Finitx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initx-collective%2Finitx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initx-collective%2Finitx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initx-collective%2Finitx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/initx-collective","download_url":"https://codeload.github.com/initx-collective/initx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initx-collective%2Finitx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33030446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":["initx"],"created_at":"2024-11-21T09:21:44.568Z","updated_at":"2026-05-14T17:02:03.419Z","avatar_url":"https://github.com/initx-collective.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003einitx ⚙️\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\u003ccode\u003einitx\u003c/code\u003e A more convenient scripting engine\u003c/p\u003e\n\n\u003cpre align=\"center\"\u003enpx \u003cb\u003einitx \u0026lt;something\u0026gt;\u003c/b\u003e\u003c/pre\u003e\n\n## What is it?\n\n`initx` can quickly execute some scripts through plug-ins to simplify complex functions\n\nlike ...\n\n\u003cdetails\u003e\n\u003csummary\u003e\n  Set the git username and email address via \u003ccode\u003e@initx-plugin/git\u003c/code\u003e plugin\n\u003c/summary\u003e\n\n```bash\n# before\ngit config --global user.name \"foo\"\ngit config --global user.email \"foo@example.com\"\n\n# after\ninitx user foo foo@example.com\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\n  Copy SSH or GPG public key via \u003ccode\u003e@initx-plugin/cp\u003c/code\u003e plugin\n\u003c/summary\u003e\n\n```bash\n# before\ngpg -k # get the key id\ngpg --armor --export \u003ckey-id\u003e # export the key\n\n# after\ninitx cp gpg\n\n# before\n# open ~/.ssh/id_rsa.pub or C:/Users/\u003cusername\u003e/.ssh/id_rsa.pub and copy it\n\n# after\ninitx cp ssh\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\n  Manage code projects using \u003ccode\u003e@initx-plugin/pm\u003c/code\u003e\n\u003c/summary\u003e\n\n```bash\n# before\n# open github, copy clone url\n# use terminal cd to ~/projects, git clone \u003curl\u003e\n# maybe more steps\n\n# after\ninitx pm add ~/projects # add projects directory, only need to do it once\ninitx create user/repo\n# or initx pm create user/repo project-name\n```\n\n\u003c/details\u003e\n\n## Usage\n\nInstall it globally\n\n```bash\nnpm i -g initx\n```\n\nThen you can ignore `npx`. You can also use `ix` as a short command alias\n\n```bash\ninitx \u003ccommand\u003e [options]\n# or\nix \u003ccommand\u003e [options]\n```\n\nUse various functions by installing plugins\n\n```bash\ninitx plugin add \u003cplugin-name\u003e\n```\n\nThis will install the `@initx-plugin/git` plugin\n\n```bash\ninitx plugin add git\n```\n\n## Plugins\n\n- [@initx-plugin/git](https://github.com/initx-collective/initx-plugin-git)\n- [@initx-plugin/gpg](https://github.com/initx-collective/initx-plugin-gpg)\n- [@initx-plugin/cp](https://github.com/initx-collective/initx-plugin-cp)\n- [@initx-plugin/pm](https://github.com/initx-collective/initx-plugin-pm)\n\nUse [initx-plugin-starter](https://github.com/initx-collective/initx-plugin-starter) to get started\n\n## Acknowledgement\n\n- [cac](https://github.com/cacjs/cac)\n- [ora](https://github.com/sindresorhus/ora)\n- [defu](https://github.com/unjs/defu)\n- [pathe](https://github.com/unjs/pathe)\n- [tinyexec](https://github.com/tinylibs/tinyexec)\n- [importx](https://github.com/antfu-collective/importx)\n- [inquirer](https://github.com/SBoudrias/Inquirer.js)\n- [which](https://github.com/npm/node-which)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finitx-collective%2Finitx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finitx-collective%2Finitx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finitx-collective%2Finitx/lists"}