{"id":49719546,"url":"https://github.com/fidenceio/manifest.cli","last_synced_at":"2026-05-28T03:03:11.161Z","repository":{"id":309129274,"uuid":"1035231562","full_name":"fidenceio/manifest.cli","owner":"fidenceio","description":"Manifest CLI - A powerful command-line tool for Git operations and version management","archived":false,"fork":false,"pushed_at":"2026-05-20T02:22:14.000Z","size":1411,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-20T03:53:12.150Z","etag":null,"topics":["automation","bash","cli","git","shell","versioning"],"latest_commit_sha":null,"homepage":"https://github.com/fidenceio/manifest.cli#readme","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fidenceio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY_ANALYSIS_REPORT.md","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":"2025-08-09T23:58:34.000Z","updated_at":"2026-05-20T02:22:18.000Z","dependencies_parsed_at":"2025-09-12T22:12:53.396Z","dependency_job_id":"dca5cc2b-8338-44f5-a5a2-ea0608c2a45d","html_url":"https://github.com/fidenceio/manifest.cli","commit_stats":null,"previous_names":["fidenceio/manifest.local","fidenceio/manifest.cli"],"tags_count":401,"template":false,"template_full_name":null,"purl":"pkg:github/fidenceio/manifest.cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fidenceio%2Fmanifest.cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fidenceio%2Fmanifest.cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fidenceio%2Fmanifest.cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fidenceio%2Fmanifest.cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fidenceio","download_url":"https://codeload.github.com/fidenceio/manifest.cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fidenceio%2Fmanifest.cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33356139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"online","status_checked_at":"2026-05-22T02:00:06.671Z","response_time":265,"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":["automation","bash","cli","git","shell","versioning"],"created_at":"2026-05-08T23:28:39.509Z","updated_at":"2026-05-28T03:03:11.148Z","avatar_url":"https://github.com/fidenceio.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Manifest CLI\n\nManifest CLI is release control for agent-assisted development. It keeps version bumps, changelogs, docs, tags, pushes, GitHub Releases, pull requests, and multi-repo fleet releases on one explicit preview/apply path.\n\n[![tests](https://github.com/fidenceio/manifest.cli/actions/workflows/test.yml/badge.svg)](https://github.com/fidenceio/manifest.cli/actions/workflows/test.yml)\n\n**Version:** `50.0.1`\n**Platforms:** macOS, Linux, FreeBSD\n**Primary interface:** `manifest \u003cverb\u003e \u003cscope\u003e [options]`\n\n## Why It Exists\n\nAgent-assisted work makes it easy to create several changes at once. Shipping them safely is the harder part. Manifest gives a repository or fleet a repeatable release path:\n\n- Inspect current state before acting.\n- Preview local and remote side effects.\n- Apply only after `-y` / `--yes`.\n- Keep release notes, changelog entries, generated docs, tags, and GitHub Releases aligned.\n- Use the same command model for one repo and for a fleet.\n\n## Safety Model\n\nManifest mutating commands preview by default.\n\n```bash\nmanifest ship repo patch        # preview\nmanifest ship repo patch -y     # apply\nmanifest ship repo patch --local -y\n```\n\n`--dry-run` is the explicit preview spelling. `--local -y` applies local release work without tag, push, GitHub Release, or Homebrew publication. `MANIFEST_CLI_AUTO_CONFIRM=1` can answer prompts after apply mode is selected; it does not authorize apply by itself.\n\n## Install\n\nFor product use, install from the Homebrew tap:\n\n```bash\nbrew tap fidenceio/tap\nbrew install manifest\n```\n\nInstall script alternative:\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/fidenceio/manifest.cli/main/install-cli.sh | bash\n```\n\nFor repository development and validation, do not install dependencies on the host. Use the containerized test runner:\n\n```bash\n./scripts/run-tests-container.sh\n```\n\nMore detail: [docs/INSTALLATION.md](docs/INSTALLATION.md).\n\n## First Release\n\n```bash\ncd your-project\n\nmanifest init repo              # preview required files\nmanifest init repo -y           # write VERSION, CHANGELOG.md, docs/, ignores\n\nmanifest prep repo              # preview remote/config prep\nmanifest prep repo -y           # apply prep\n\nmanifest ship repo patch        # preview release\nmanifest ship repo patch -y     # publish release\n```\n\nUseful read-only checks:\n\n```bash\nmanifest status\nmanifest doctor\nmanifest config list\n```\n\n## Fleet Release\n\nA fleet is a workspace of independent Git repositories described by `manifest.fleet.config.yaml` and `manifest.fleet.tsv`.\n\n```bash\nmanifest init fleet             # scan or consume fleet TSV\nmanifest status fleet           # inspect selected repos\nmanifest ship fleet patch       # preview releaseable services\nmanifest ship fleet patch -y    # apply releaseable services\n```\n\nFleet adoption and reconciliation stay preview-first:\n\n```bash\nmanifest plan fleet\nmanifest plan fleet --apply\nmanifest reconcile fleet\nmanifest reconcile fleet --do\n```\n\nMore detail: [docs/FLEET_DESIGN_SPEC.md](docs/FLEET_DESIGN_SPEC.md).\n\n## Command Model\n\n| Area | Commands |\n| ---- | -------- |\n| Setup | `manifest config`, `manifest init repo`, `manifest init fleet` |\n| Preparation | `manifest prep repo`, `manifest prep fleet` |\n| Refresh | `manifest refresh repo`, `manifest refresh fleet` |\n| Release | `manifest ship repo \u003ctype\u003e`, `manifest ship fleet \u003ctype\u003e` |\n| Diagnostics | `manifest status`, `manifest doctor`, `manifest security --check` |\n| Pull requests | `manifest pr create`, `manifest pr checks`, `manifest pr ready`, `manifest pr merge`, `manifest pr update` |\n| Recipes | `manifest recipe list`, `manifest recipe show`, `manifest recipe explain` |\n\nRelease types: `patch`, `minor`, `major`, `revision`.\n\nComplete grammar: [docs/COMMAND_REFERENCE.md](docs/COMMAND_REFERENCE.md).\n\n## Configuration\n\nConfiguration is YAML-backed and layered:\n\n1. Built-in defaults\n2. `~/.manifest-cli/manifest.config.global.yaml`\n3. `manifest.config.yaml`\n4. `manifest.config.local.yaml`\n\nEvery user-facing key maps to a `MANIFEST_CLI_*` environment variable through the YAML bridge. Use `manifest config describe \u003ckey\u003e` to see the effective value, layer source, and env-var name.\n\nSchema example: [examples/manifest.config.yaml.example](examples/manifest.config.yaml.example).\n\n## Documentation Map\n\n| Document | Purpose |\n| -------- | ------- |\n| [docs/INDEX.md](docs/INDEX.md) | Task-based documentation index |\n| [docs/USER_GUIDE.md](docs/USER_GUIDE.md) | Daily workflows and operating model |\n| [docs/COMMAND_REFERENCE.md](docs/COMMAND_REFERENCE.md) | Command grammar and flags |\n| [docs/EXAMPLES.md](docs/EXAMPLES.md) | Copyable workflow examples |\n| [docs/INSTALLATION.md](docs/INSTALLATION.md) | Product install and contributor validation |\n| [docs/FLEET_DESIGN_SPEC.md](docs/FLEET_DESIGN_SPEC.md) | Fleet architecture |\n| [docs/CLI_TRANSACTION_MAP.md](docs/CLI_TRANSACTION_MAP.md) | High-consequence transaction paths |\n| [tests/README.md](tests/README.md) | Containerized test workflow |\n\n## Optional Cloud\n\nManifest CLI works without Manifest Cloud. Optional Cloud plugins can extend release-note generation, queue/policy behavior, MCP reports, and agent workflows. Missing Cloud plugins fall back to install guidance instead of blocking core repo and fleet releases.\n\nCloud repo: [fidenceio.manifest.cloud](https://github.com/fidenceio/manifest.cloud)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffidenceio%2Fmanifest.cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffidenceio%2Fmanifest.cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffidenceio%2Fmanifest.cli/lists"}