{"id":51197986,"url":"https://github.com/shiptoday/forge-plugin-claude-mp","last_synced_at":"2026-06-27T22:03:26.599Z","repository":{"id":363493316,"uuid":"1263513701","full_name":"ShipToday/forge-plugin-claude-mp","owner":"ShipToday","description":"Free, AI-powered PDLC automation for Claude Code. Routes feature requests, bug reports, and architecture work through structured workflows.","archived":false,"fork":false,"pushed_at":"2026-06-18T07:58:39.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-18T09:25:10.827Z","etag":null,"topics":["ai-agents","claude","claude-code","claude-code-plugin","forge","mcp","mcp-server","pdlc","sdlc","shiptoday"],"latest_commit_sha":null,"homepage":"https://www.shiptoday.ai/","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/ShipToday.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":"2026-06-09T02:55:58.000Z","updated_at":"2026-06-18T07:55:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ShipToday/forge-plugin-claude-mp","commit_stats":null,"previous_names":["shiptoday/forge-plugin-claude-mp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShipToday/forge-plugin-claude-mp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShipToday%2Fforge-plugin-claude-mp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShipToday%2Fforge-plugin-claude-mp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShipToday%2Fforge-plugin-claude-mp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShipToday%2Fforge-plugin-claude-mp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShipToday","download_url":"https://codeload.github.com/ShipToday/forge-plugin-claude-mp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShipToday%2Fforge-plugin-claude-mp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34869005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"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":["ai-agents","claude","claude-code","claude-code-plugin","forge","mcp","mcp-server","pdlc","sdlc","shiptoday"],"created_at":"2026-06-27T22:03:25.842Z","updated_at":"2026-06-27T22:03:26.590Z","avatar_url":"https://github.com/ShipToday.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ShipToday Marketplace for Claude Code\n\nThe official [Claude Code](https://code.claude.com) plugin marketplace from\n**ShipToday**.\n\n## Available plugins\n\n| Plugin | Description |\n| ------ | ----------- |\n| [`forge-shiptoday`](plugins/forge-shiptoday) | Free, AI-powered product development lifecycle automation. Just describe what you want to build — Forge routes your feature requests, bug reports, and architecture explorations through structured PDLC workflows. No trigger words needed. |\n\n## Installation\n\nAdd this marketplace to Claude Code, then install a plugin from it:\n\n```\n/plugin marketplace add ShipToday/forge-plugin-claude-mp\n/plugin install forge-shiptoday@shiptoday\n```\n\nThe first command registers the marketplace (referenced by its name,\n`shiptoday`). The second installs the Forge plugin from it. Browse everything\navailable with `/plugin`.\n\nTo update later:\n\n```\n/plugin marketplace update shiptoday\n```\n\n## Repository structure\n\n```\nforge-plugin-claude-mp/\n├── .claude-plugin/\n│   └── marketplace.json          # Marketplace manifest (lists the plugins)\n├── plugins/\n│   └── forge-shiptoday/          # The Forge plugin\n│       ├── .claude-plugin/\n│       │   └── plugin.json       # Plugin manifest\n│       ├── .mcp.json             # Forge MCP server definition\n│       ├── hooks/\n│       │   ├── hooks.json        # Hook wiring\n│       │   └── *.cjs             # Hook scripts\n│       ├── skills/\n│       │   ├── forge-autopilot/SKILL.md\n│       │   └── forge-workflow/SKILL.md\n│       ├── README.md\n│       └── LICENSE\n├── README.md\n└── LICENSE\n```\n\nThe marketplace manifest lives at `.claude-plugin/marketplace.json`. Each plugin\nlives in its own directory under `plugins/`, and the manifest's `source` fields\nare repo-relative paths (e.g. `./plugins/forge-shiptoday`) pointing at those\ndirectories.\n\n## Local development \u0026 testing\n\nTest the marketplace from a local checkout before pushing:\n\n```bash\ngit clone https://github.com/ShipToday/forge-plugin-claude-mp\n```\n\n```\n/plugin marketplace add ./forge-plugin-claude-mp\n/plugin install forge-shiptoday@shiptoday\n```\n\nTo work on the Forge plugin in isolation, point Claude Code at its directory:\n\n```bash\nclaude --plugin-dir ./forge-plugin-claude-mp/plugins/forge-shiptoday\n```\n\n## Adding a plugin to this marketplace\n\n1. Create `plugins/\u003cyour-plugin\u003e/` with a `.claude-plugin/plugin.json` manifest\n   (plus any `skills/`, `agents/`, `commands/`, `hooks/`, and `.mcp.json` the\n   plugin needs).\n2. Add an entry to the `plugins` array in\n   [`.claude-plugin/marketplace.json`](.claude-plugin/marketplace.json) with a\n   `name`, a repo-relative `source` (`./plugins/\u003cyour-plugin\u003e`), and a\n   `description`.\n3. Validate the JSON and confirm it loads with\n   `/plugin marketplace add ./forge-plugin-claude-mp`.\n\n## License\n\nMIT — see [`LICENSE`](LICENSE). Each plugin is additionally covered by the\nlicense in its own directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshiptoday%2Fforge-plugin-claude-mp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshiptoday%2Fforge-plugin-claude-mp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshiptoday%2Fforge-plugin-claude-mp/lists"}