{"id":50489542,"url":"https://github.com/unic/unic-agents-plugins","last_synced_at":"2026-06-02T01:30:50.582Z","repository":{"id":354855615,"uuid":"1225036291","full_name":"unic/unic-agents-plugins","owner":"unic","description":"A monorepo of AI agent plugins developed at Unic.","archived":false,"fork":false,"pushed_at":"2026-05-22T19:15:05.000Z","size":1744,"stargazers_count":0,"open_issues_count":22,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-05-22T21:52:41.795Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-29T22:08:16.000Z","updated_at":"2026-05-22T19:15:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/unic/unic-agents-plugins","commit_stats":null,"previous_names":["unic/unic-agents-plugins"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/unic/unic-agents-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unic%2Funic-agents-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unic%2Funic-agents-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unic%2Funic-agents-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unic%2Funic-agents-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unic","download_url":"https://codeload.github.com/unic/unic-agents-plugins/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unic%2Funic-agents-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33802170,"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-01T02:00:06.963Z","response_time":115,"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":"2026-06-02T01:30:46.389Z","updated_at":"2026-06-02T01:30:50.577Z","avatar_url":"https://github.com/unic.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# unic-agents-plugins\n\nA monorepo of AI agent plugins developed at Unic. Currently hosts Claude Code plugins; structured to accommodate plugins for other agents (GitHub Copilot, etc.) in the future.\n\n## Plugins\n\n| Plugin                                                 | Agent       | Description                                                                                         |\n| ------------------------------------------------------ | ----------- | --------------------------------------------------------------------------------------------------- |\n| [`pr-review`](apps/claude-code/pr-review/)             | Claude Code | Review Azure DevOps pull requests                                                                   |\n| [`auto-format`](apps/claude-code/auto-format/)         | Claude Code | Auto-format and lint files after edits                                                              |\n| [`unic-confluence`](apps/claude-code/unic-confluence/) | Claude Code | Publish Markdown files to Confluence                                                                |\n| [`unic-archon-dlc`](apps/claude-code/unic-archon-dlc/) | Claude Code | Archon-powered AI development lifecycle (explore → plan → build → qa → cleanup → triage)            |\n| [`unic-pr-review`](apps/claude-code/unic-pr-review/)   | Claude Code | AI-powered PR reviews with Atlassian intent checking, confidence-scored findings, and Approval Loop |\n\n## Installing plugins (Claude Code)\n\nAdd the Unic marketplace once (run inside `claude`):\n\n```\n/plugin marketplace add https://github.com/unic/unic-agents-plugins\n```\n\nThen install individual plugins:\n\n```\n/plugin install pr-review@unic-agent-plugins\n/plugin install auto-format@unic-agent-plugins\n/plugin install unic-confluence@unic-agent-plugins\n/plugin install unic-archon-dlc@unic-agent-plugins\n/plugin install unic-pr-review@unic-agent-plugins\n```\n\n## Development\n\n**Prerequisites:** Node.js ≥ 22 (see `.nvmrc` for the recommended version), pnpm ≥ 10, Claude Code CLI (for Ralph).\n\n```sh\npnpm install                           # install all workspace deps\npnpm check                             # Format check (Biome \u0026 Prettier for MD)\npnpm format                            # Format (Biome \u0026 Prettier for MD), writes files\npnpm test                              # run tests across all packages\npnpm typecheck                         # type-check across all packages\npnpm --filter \u003cname\u003e verify:changelog  # changelog check for one plugin\n```\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for the full development workflow.\n\n## Structure\n\n```\napps/\n└── claude-code/          # Claude Code plugins (one dir per plugin)\npackages/\n├── biome-config/         # @unic/biome-config — shared Biome rules\n├── tsconfig/             # @unic/tsconfig — shared TypeScript base config\n└── release-tools/        # @unic/release-tools — bump/tag/verify scripts\ndocs/\n├── adr/                  # Architectural Decision Records\n├── agents/               # Agent skill documentation (issue-tracker, labels, branching, domain, workflow)\n├── inbox/                # Retired idea-capture notes (historical)\n├── issues/               # Grilled and scoped feature issues\n├── process/              # Process and workflow guides\n└── research/             # Research notes and explorations\n```\n\n## License\n\nLGPL-3.0-or-later — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funic%2Funic-agents-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funic%2Funic-agents-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funic%2Funic-agents-plugins/lists"}