{"id":30838767,"url":"https://github.com/jepemo/miko-shell","last_synced_at":"2025-09-06T18:12:06.201Z","repository":{"id":312122020,"uuid":"1023707834","full_name":"jepemo/miko-shell","owner":"jepemo","description":"A containerized development environment manager that allows you to work with different tools and dependencies without installing them locally.","archived":false,"fork":false,"pushed_at":"2025-08-28T16:52:36.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-28T23:32:32.105Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/jepemo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2025-07-21T15:11:17.000Z","updated_at":"2025-08-28T16:52:40.000Z","dependencies_parsed_at":"2025-08-28T23:32:38.119Z","dependency_job_id":"82aa9dd4-c924-4e01-821c-de5036ac940a","html_url":"https://github.com/jepemo/miko-shell","commit_stats":null,"previous_names":["jepemo/miko-shell"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jepemo/miko-shell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmiko-shell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmiko-shell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmiko-shell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmiko-shell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jepemo","download_url":"https://codeload.github.com/jepemo/miko-shell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmiko-shell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273941525,"owners_count":25195104,"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-09-06T02:00:13.247Z","response_time":2576,"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-09-06T18:11:52.873Z","updated_at":"2025-09-06T18:12:06.194Z","avatar_url":"https://github.com/jepemo.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Miko Shell\n\n[![Release](https://img.shields.io/github/v/release/jepemo/miko-shell)](https://github.com/jepemo/miko-shell/releases)\n[![CI](https://img.shields.io/github/actions/workflow/status/jepemo/miko-shell/ci.yml)](https://github.com/jepemo/miko-shell/actions)\n[![Go Version](https://img.shields.io/github/go-mod/go-version/jepemo/miko-shell)](https://github.com/jepemo/miko-shell/blob/main/go.mod)\n[![License](https://img.shields.io/github/license/jepemo/miko-shell)](LICENSE)\n\nDeclarative, reproducible dev environments backed by Docker or Podman. One YAML file, same toolchain for every developer and CI job.\n\n---\n\n## Quick Start\n\n```bash\n# 1) Create a config\nmiko-shell init               # or: miko-shell init --dockerfile\n\n# 2) (Optional) Build the image\nmiko-shell image build\n\n# 3) Discover available scripts\nmiko-shell run\n\n# 4) Run a script\nmiko-shell run test\n```\n\nMinimal `miko-shell.yaml`:\n\n```yaml\nname: my-project\ncontainer:\n  provider: docker\n  image: alpine:latest\n  setup:\n    - apk add --no-cache curl git\nshell:\n  startup:\n    - echo \"Welcome to the development shell\"\n  scripts:\n    - name: test\n      commands:\n        - go test ./...\n```\n\n---\n\n## Install\n\n- Quick install:\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/jepemo/miko-shell/main/install.sh | bash\n```\n\n- Uninstall:\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/jepemo/miko-shell/main/install.sh | bash -s -- --uninstall\n```\n\n- Bootstrap from local checkout: `./bootstrap.sh`\n- From source: `make build` or `go build -o miko-shell .`\n- Prebuilt binaries: see [Releases](https://github.com/jepemo/miko-shell/releases)\n\n---\n\n## Commands (condensed)\n\n- `init` — scaffold a config (`--dockerfile` for Dockerfile-based builds)\n- `image` — comprehensive image management (build, list, clean, info, prune)\n- `run` — list scripts (no args) or run `run \u003cname\u003e [args...]`\n- `open` — open an interactive shell inside the development environment\n- `completion` — generate shell autocompletion scripts\n- `version` — print version\n\nFor details and advanced usage, see [DOCS.md](DOCS.md).\n\n---\n\n## Examples\n\nStart from ready-made configs in `examples/`:\n\n```bash\n# Go\nmiko-shell image build -c examples/dev-config-go.example.yaml # (Optional)\nmiko-shell run         -c examples/dev-config-go.example.yaml test\n\n# Next.js\nmiko-shell image build -c examples/dev-config-nextjs.example.yaml # (Optional)\nmiko-shell run         -c examples/dev-config-nextjs.example.yaml dev\n```\n\nMore examples and tips: `examples/README.md`, `examples/USAGE.md`.\n\n---\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjepemo%2Fmiko-shell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjepemo%2Fmiko-shell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjepemo%2Fmiko-shell/lists"}