原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1435,
"has_wiki": true,
"homepage": "https://grokify.github.io/prism-capability/",
"languages": {
"Go": 160045,
"HTML": 2303,
"TypeScript": 13856
},
"pushed_at": "2026-07-27T11:33:53Z",
"created_at": "2026-05-17T15:42:14Z",
"owner_type": "User",
"updated_at": "2026-07-27T11:31:30Z",
"description": "A specification for defining capability stacks with layers, capabilities, and PRISM maturity integration.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://plexusone.dev",
"name": "John Wang",
"type": "User",
"login": "grokify",
"company": null,
"location": "California",
"followers": 158,
"avatar_url": "https://avatars.githubusercontent.com/u/209872?v=4",
"created_at": "2010-02-24T11:52:51Z",
"is_verified": null,
"public_repos": 419,
"account_age_days": 5997
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.7.1",
"kind": "patch",
"published_at": "2026-07-27T11:33:53Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2026-07-20T00:12:44Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2026-06-29T00:57:40Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-06-07T06:28:34Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-05-24T13:25:43Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-05-18T10:33:59Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-05-18T02:09:00Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-05-17T22:52:58Z"
}
],
"recent_commits": [
{
"oid": "4b07b493b365b6eff37cab264b53ba3d5a6adb6e",
"body": null,
"is_bot": false,
"headline": "chore(deps): `go mod`: update dependencies",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-27T11:28:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "358e8bb726f0cad657db4c676c8abd01c53530e9",
"body": "Add comprehensive SVG rendering examples to docs/api/reference.md:\n- Stack layout: layered marketecture with custom options\n- Hub layout: hexagonal hub-and-spoke architecture\n- Custom theming: SVGTheme with brand colors\n- File output: rendering directly to file handles\n\nInclude code examples for both common use cases and advanced\ncustomization via the render.SVG* types and functions.\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(api): document SVG rendering API in reference guide",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T23:22:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5f9c89b1e5d2bcfecf74ff66ba9a0a0a603b3b56",
"body": null,
"is_bot": false,
"headline": "docs: `mkdocs.yml`: update `nav`",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T23:20:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d0b2d7dbb6434bb422ec02fac15400357d68598",
"body": "Update docs/cli/render.md to include SVG rendering:\n- Add svg format and layout/substrate flags to flag table\n- Add SVG examples for both stack and hub layouts\n- Expand examples section with format-specific subsections\n- Add comprehensive SVG Output section explaining both layouts,\n features, use cases, and theming\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(cli): document native SVG renderer in capstack render guide",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T23:19:51Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "801f69ade30e487e7a17bf7b1b040bd705b0389e",
"body": "Add release notes (docs/releases/v0.7.0.md) documenting native SVG renderer\nfeatures, layouts, CLI usage, theming, and use cases.\n\nUpdate README.md with SVG rendering examples and layout documentation.\n\nUpdate CHANGELOG.json with v0.7.0 entry and commit hashes.\n\nRegenerate CHANGELOG.md using schangelog for consistency.\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(release): complete v0.7.0 release documentation",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T23:14:35Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5ca5cfcbd8613f213ba7df8fd70e069f0fb468f4",
"body": "Adds -f svg / --format=svg support with --layout (stack|hub) and\n--substrate flags. Output files with .svg extension auto-detect to\nSVG format. Wires SVG renderer into capstack CLI dispatch following\nexisting D2/HTML/Lit patterns.\n\nExamples:\n capstack render stack.json -f svg --layout hub --substrate \"Go · K8s\"\n capstack render ops.json -o diagram.svg # auto-detects .svg extension\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add svg format to render command",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T22:26:26Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "010b0274935329c887b487d4a4224d641c04c70f",
"body": "Tests both stack and hub layouts, verifies tooling name aggregation\nand fallback to capability count, and validates error handling for\nunknown layout values. All tests pass with stdlib-only dependencies.\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "test(render): add SVG renderer tests",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T22:13:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cbc54d3effb485415a231dec029a5abee261f9dd",
"body": "Adds SVGLayout (stack, hub) and SVGOptions for themeable marketecture\ndiagram generation from the canonical CapabilityStack IR. Stack layout\nrenders layers as horizontal bands with capability cells, framed by\napplications and substrate bands. Hub layout renders a hexagonal\nhub-and-spoke with one nod\n[…]\n; tooling names are pulled from\neach layer's capabilities for the hub node subtitles, with fallback to\ncapability count when tooling is empty.\n\nCo-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add native SVG renderer for capability stacks",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-19T22:12:59Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "39e2ba3068a0fb4528e4f6467e6e41f87ef9708b",
"body": null,
"is_bot": false,
"headline": "docs: `README.md`: update shields",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-07-06T09:44:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8cb1bdc2eaf6de02d172f3c2e614ba6ed9b7f62",
"body": null,
"is_bot": false,
"headline": "docs: `README.md`: update shields",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:53:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "257b422948e488c1355cd156d52566acb61c699f",
"body": null,
"is_bot": false,
"headline": "docs: `mkdocs.yml`: update nav",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:51:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f52d1e6f4442b96c9b88b1acb0905a42b2f73c5",
"body": "Update latest release section to v0.6.0 with new features summary.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update index.md for v0.6.0 release",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:49:14Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ceb314641cd88fd5fe93c055442f65def7f127ad",
"body": "Add v0.6.0 release entry with commit hashes for:\n- Framework constants (DORA, SRE, SPACE, AI-DORA, AI-SPACE)\n- Framework helper functions\n- Developer experience metrics\n- Documentation updates\n\nRegenerated CHANGELOG.md via schangelog.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update CHANGELOG for v0.6.0",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:49:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bfef2f740a85f2b3c11d9fefb2fab70ceff451ad",
"body": "Document new features:\n- Operations & DevOps frameworks (DORA, SRE)\n- Developer productivity frameworks (SPACE, AI-DORA, AI-SPACE)\n- Developer experience metrics with canonical SLI definitions\n- Framework helper functions\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add release notes for v0.6.0",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:49:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f0b035d1aa273762508466f9d7c96c1c71940739",
"body": "Add Operations & DevOps and Developer Productivity framework sections:\n- DORA, SRE for operations\n- SPACE, AI-DORA, AI-SPACE for developer productivity\n\nReorganize existing frameworks under \"Compliance & Security\" heading.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update README with new framework categories",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:43:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e991f1ba5bc1a0a7efbc1917f85a6b1cf471058a",
"body": "Ignore site/ directory generated by mkdocs build.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add MkDocs build output to gitignore",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:41:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "56f9a52d7b501d6294e1445e9bfda00d14dd142f",
"body": "Add canonical SLI definitions for DORA, SPACE, AI-DORA, and AI-SPACE\nframeworks including:\n- Performance level thresholds (elite, high, medium, low)\n- Metric descriptions and units\n- Framework metadata and sources\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(data): add developer experience metrics",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:41:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c3f6202ede4ff742ad64615f821d853ed3dbb6ce",
"body": "Add framework constants and helper functions:\n- DORA (DevOps Research and Assessment)\n- SRE (Site Reliability Engineering)\n- SPACE (Satisfaction, Performance, Activity, Communication, Efficiency)\n- AI-DORA (AI-Modified DORA)\n- AI-SPACE (AI-Modified SPACE)\n\nNew helper functions:\n- OperationsFrameworks()\n- DeveloperProductivityFrameworks()\n- AIFrameworks()\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add operations and developer productivity frameworks",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:40:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f687a08f91500cb0c774e00d634acc933f2b9984",
"body": null,
"is_bot": false,
"headline": "chore(deps): `go mod`: update dependencies",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-29T00:35:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae1a672f152a5b11b35305b5366b0b535a6245e4",
"body": null,
"is_bot": false,
"headline": "docs: `mydocs.yml`: add v0.5.0 release",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:20:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6147a08e4426e7ed237f70da0ec2dc6faf1b291",
"body": "- Add Lit output section to overlays.md concept guide\n- Update quickstart.md with Lit as recommended render format\n- Add examples for --view, --dark flags and JSON output\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add Lit rendering to overlays and quickstart guides",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:16:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0a426159525b64dc6e4e0071314d42bafbf73fec",
"body": "- Update Latest Release section to v0.5.0\n- Add Lit web component to rendering features list\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update index.md for v0.5.0 release",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:08:42Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "71a76d236777aee3733e661c4575f57e713d7fc2",
"body": "Document v0.5.0 release with:\n- Lit web component rendering (format=lit)\n- JSON data output (format=json)\n- Priority-frameworks integration\n- Framework accessor functions\n- Operations-site example\n- Dependency updates\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add v0.5.0 release notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:04:24Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bc759473886cd238e112186146030eae887b995d",
"body": "Update README.md and docs/cli/render.md with:\n- New output formats: lit (interactive HTML) and json (data export)\n- New CLI flags: --view, --component-path\n- Updated --format flag description\n- Examples for Lit rendering with view modes and themes\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: document lit and json output formats",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:02:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b047a5f35cdef87fe11e2d36ad4b297275b93609",
"body": "Add v0.5.0 entry to CHANGELOG.json with:\n- Lit web component rendering highlights\n- Priority-frameworks migration details\n- New CLI flags and framework accessor functions\n- Operations-site example\n\nRegenerate CHANGELOG.md from JSON.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: prepare v0.5.0 release changelog",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T06:01:47Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "406e2538163981db92fb17978b7dc36e46714242",
"body": "Add example operations dashboard site demonstrating Lit component\nintegration with multiple views:\n\n- index.html: Landing page with navigation\n- by-layer.html: Capabilities grouped by value stream layer\n- by-category.html: Capabilities grouped by category\n- maturity.html: Maturity assessment view\n- metrics.html: Operations metrics dashboard\n- data/: JSON data files for Lit components\n- assets/: Static assets\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add operations-site example",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T05:51:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f3cdcb39ce959a59863ffd304c81eb879db974d8",
"body": "Add support for rendering capability stacks as interactive Lit web\ncomponents with modern UI features:\n\n- Add render/lit.go with LitGridData types matching prism-ui TypeScript\n- Support JSON output for Lit component data integration\n- Support standalone HTML with embedded Lit component\n- Add view mo\n[…]\n\n- Support dark theme for Lit output\n\nThe Lit format provides interactive filtering, sorting, and view\ntoggling compared to static HTML output.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add Lit web component rendering for interactive HTML",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T05:51:33Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "09e9725511548e77dd03e9a270281b38ff17e7c5",
"body": "- Update constants.go to define priority values directly instead of\n importing from prism-core (which no longer exports them)\n- Update ValidPriority() and PriorityWeight() to use SeverityFramework\n- Migrate ImportanceWeight() and DynamicPriorityWeight() to use\n priority-frameworks instead of switc\n[…]\namework accessor functions: SeverityFramework(), PriorityFrameworkP(),\n MoSCoWFramework(), IETFFramework(), GeneralFramework(), GetFramework()\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: migrate to priority-frameworks for priority handling",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T05:51:13Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "5a660b093beb1bb30ac50b5d7d4b11f04272daf6",
"body": "Update dependencies to use latest prism-core v0.2.0 which removed\nPriority and MoSCoW types, and add priority-frameworks v0.2.0 for\nstandardized priority framework handling.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "deps: update prism-core to v0.2.0, add priority-frameworks v0.2.0",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-06-07T05:49:26Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "653bfd8320bf747182d99dd763515f4e27c056d4",
"body": "Set up MkDocs Material site with:\n- Getting Started (installation, quickstart)\n- Concepts (lifecycle, priority framework, overlays)\n- CLI Reference (validate, list, show, render)\n- API Reference\n- Release notes navigation\n\nMove LIFECYCLE.md to docs/concepts/lifecycle.md.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add MkDocs site with documentation structure",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T13:20:59Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "636062ebf346ea2c85a64eb854b9546d499fb481",
"body": "Document new features:\n- Importance field and dynamic P0-P3 priority calculation\n- Priority framework for tier organization\n- Overlay provider for external data injection\n- Interactive HTML filters and badges\n- CLI package extraction\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add v0.4.0 release notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T13:20:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "52517602d2e9883662518cef3f9846e68b3e79c9",
"body": "Add v0.3.0 and v0.4.0 entries to CHANGELOG.json and regenerate\nCHANGELOG.md using schangelog.\n\nv0.4.0 highlights:\n- Importance field and dynamic priority calculation (P0-P3)\n- Priority framework for organizing capabilities into tiers\n- Overlay provider for external data injection into renderers\n- Interactive filters and maturity badges in HTML renderer\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: prepare v0.4.0 release changelog",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T13:18:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "82817dee7b2a9e992142803e407a6a5e65936055",
"body": null,
"is_bot": false,
"headline": "chore(lint): `golangci-lint`: fix `gofmt`",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T13:00:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "806360572ce16d60bd5004f15643513b39f94997",
"body": "Update test to check for \"cs-filters\" instead of \"cs-legend\" to match\nthe refactored HTML template that replaced the static legend with\ninteractive filter controls.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "test: update HTML test for filter controls",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:19:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "24972a275eaaaaa3020741cb839674b549205371",
"body": "Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: ignore built capstack binary",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:14:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "23431a6e72ae0692e9c5a0ecbba03c9e9978b1ef",
"body": "Add documentation for new features:\n- Importance levels (critical/high/medium/low) with weights\n- Capability ordering with explicit Order field\n- Sorting methods (order, name, importance, priority, status)\n- Dynamic priority calculation (P0-P3) from importance × maturity gap\n- Validation rules for order uniqueness\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: document importance, ordering, and priority framework",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:14:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "51343d31e719bd4a6fe11e9fce86bfb2537cc6d2",
"body": "Move CLI commands from cmd/capstack/ to cli/ package for reusability.\nThe cmd/capstack/main.go now imports and uses cli.RootCmd.\n\nBenefits:\n- Commands can be embedded in other CLIs (e.g., prism)\n- Easier testing of command logic\n- Cleaner separation of concerns\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor(cli): extract commands to reusable cli package",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:13:30Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0fbfe0b605d0d6ce5717464e626a5d1f3a3df191",
"body": "Enhance HTML renderer with:\n- Interactive status filter checkboxes\n- Maturity level filter (M1-M5) when overlays present\n- Badge display for capabilities with overlay data\n- JavaScript filtering logic with select/clear all\n- Data attributes for filtering (status, maturity)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add interactive filters and badges to HTML",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:13:06Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "939c08c5a0d64159f3f7f5c76e8082a5cbe55f41",
"body": "Integrate OverlayProvider into D2 renderer to display:\n- Badge text (e.g., maturity levels) using D2 markdown\n- Custom badge colors with automatic text contrast\n- Tooltip extras appended to capability tooltips\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add overlay support to D2 diagrams",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:12:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "a644dfa0944867bfda89711292ce7b332e102b03",
"body": "Add CapabilityOverlay and OverlayProvider types to allow external modules\n(like prism-maturity) to inject supplemental display data into renderers\nwithout tight coupling.\n\nSupports:\n- BadgeText with customizable colors\n- TooltipExtra for additional tooltip content\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add overlay provider for external data injection",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:08:28Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6e96249e7a5303e395a55e9198f22aa47f602458",
"body": "Validate that capability Order values are globally unique when any\nnon-zero Order exists. Catches duplicates at load time with descriptive\nerror messages identifying the conflicting capabilities.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add order uniqueness validation",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:07:31Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "558c154911f488f58a6897363e444bcc3b41d47b",
"body": "Add PriorityFramework for organizing capabilities into priority tiers,\nand add flexible sorting methods for capabilities.\n\nPriority Framework:\n- PriorityTier with OrderRange for grouping by explicit order values\n- CapabilityIDs for explicit tier membership\n- DefaultPriorityFramework with 4-tier stru\n[…]\ntance: by importance weight (critical first)\n- SortByPriority: by static priority field\n- SortByStatus: by lifecycle status (operational first)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add priority framework and capability sorting",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:07:17Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ed9f69b45400176c72fbf4d4691d838a4c3fe5f0",
"body": "Add static importance weights for capabilities, layers, and categories.\nUsed in conjunction with maturity state to calculate dynamic priority.\n\n- Add Importance field (critical/high/medium/low) to Capability, Category, Layer\n- Add Order field to Capability for explicit sorting\n- Add importance.go with ImportanceWeight and CalculatePriority functions\n- Add dynamic priority levels (P0-P3) based on importance × maturity gap\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add importance field and priority calculation",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-24T06:06:15Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cb24b35283ab6d110b607f3a7960fe4530927eaf",
"body": null,
"is_bot": false,
"headline": "docs: add `v0.3.0` release notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T10:31:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5886fbe8067644ca36300f9229e3581e44deb2b2",
"body": "security-saas-greenfield.json moved to prism-security/examples/\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: move security example to prism-security",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T10:23:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4a586872e276537bece61b586f18c55a74dd1b4e",
"body": "Remove local replace directive and use released version.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "build(deps): update prism-core to v0.1.0",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T09:56:13Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9f568f9ea1fd6254db411b5547fbeb2ff2b80ad6",
"body": "Regenerate capability-stack.schema.json to include:\n- MarketRef type definition\n- GapContribution type definition\n- MarketIntegration type definition\n- Updated Capability with marketRef field\n- Updated CapabilityStack with marketIntegration field\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(schema): regenerate JSON schema with MarketRef types",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T09:10:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "db04586212887c47e511d1a32f4a09f1768a6910",
"body": "Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(deps): add jsonschema for schema generation",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T09:09:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "253a562adae4431f0fbf0151a44cc317e2f67d57",
"body": "Add MarketRef type to link organizational capabilities to market capabilities\ndefined in market-strategy-engine. This enables traceability from internal\ncapabilities to external market competitiveness.\n\nNew types:\n- MarketRef: links org capability to market capabilities it enables\n- GapContribution:\n[…]\n cap\n- CapabilitiesByMarket(marketID): find org caps linked to a market\n- CapabilitiesForSegment(segmentID): find org caps benefiting a segment\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add MarketRef for market-strategy-engine integration",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T09:09:33Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2567c77e2f91b10d54d9603ca4b9de5d6aa25710",
"body": "Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "style: fix gofmt formatting in schema/generate.go",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T08:24:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "31dc56eb11064cfbe27a206052fe0af52cb67c3a",
"body": "Import shared constants from prism-core:\n- Priority constants (critical, high, medium, low)\n- Domain constants (security, ai, platform, data, etc.)\n- NIST CSF function constants (govern, identify, protect, etc.)\n\nAdd helper functions from prism-core:\n- ValidPriority, PriorityWeight\n- ValidDomain, Do\n[…]\nen format vs prism-core underscore)\n- Framework (uses kebab-case vs prism-core UPPER_SNAKE)\n- Phase, ToolType, ToolStatus (capability-specific)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: import Priority, Domain, NIST CSF from prism-core",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T08:24:19Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "f23508684ee70bd3dc970cdf33c27cc59de9566c",
"body": "Add github.com/grokify/prism-core as dependency using local replace\ndirective for development. Will be updated to released version after\nprism-core is tagged.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "build(deps): add prism-core dependency with local replace",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T08:24:10Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "abc6fef078fcd055d1a8d2634849d1c0552cc19a",
"body": "Update references throughout README.md to use the new PRISM ecosystem\nproject names:\n- prism-capability (this project)\n- prism-intelligence (maturity models, SLIs/SLOs, state tracking)\n- prism-execution (OKRs, roadmaps, improvement initiatives)\n\n- Simplify ASCII diagram from 4 boxes to 3 boxes\n- Upd\n[…]\ns table\n- Update Related Projects section\n- Update Capability Lifecycle table\n- Update Greenfield/Brownfield sections\n- Update Workflow section\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(readme): update ecosystem references to new project names",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:21:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "76a6c3fda8d027207052e5360110afb5fdfa1a4c",
"body": null,
"is_bot": false,
"headline": "docs: `README.md`: update shields",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:19:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a2a5dfd7bb822d0ea6d5b3a161a82ef7eafb8d4",
"body": null,
"is_bot": false,
"headline": "chore(deps): `go mod`: update dependencies",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:16:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a30bf195b77a389df99b2919463c85b0ad5d0616",
"body": "- Add commit hashes to v0.2.0 entries in CHANGELOG.json\n- Generate CHANGELOG.md using schangelog\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add commit hashes to v0.2.0 changelog and generate CHANGELOG.md",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:13:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9f84f77e21c7973af7b3723ca1931303d69a2c45",
"body": "- Add v0.2.0 entry to CHANGELOG.json with repository rename details\n- Create docs/releases/v0.2.0.md with migration guide\n- Update v0.1.0 release notes to note the rename happened in v0.2.0\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add v0.2.0 release notes and update changelog",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:08:10Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "fabbce9e4be4b2889fe1f0b313a95e7d60420413",
"body": "Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor(schema): update JSON Schema $id to new repository path",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:07:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5e3be62822f3ad6cd4f43a7b049b11ea002d061a",
"body": "BREAKING CHANGE: Go module path changed from github.com/plexusone/capability-stack-spec\nto github.com/grokify/prism-capability. Update imports accordingly.\n\n- Update go.mod module path\n- Update all import statements in cmd/, render/, schema/\n- Update README badges and installation instructions\n- Update example import paths in README\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor!: rename module from capability-stack-spec to prism-capability",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-18T00:07:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9d1d411d5c6d624ca24b4515ab2dc56b6fb086ed",
"body": "Prepare for v0.1.0 release with:\n- CHANGELOG.json in structured-changelog format\n- Release notes documenting all features\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add CHANGELOG.json and v0.1.0 release notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T22:47:57Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7c6dbb7431d1a5595fa17373c119f08cb228fbca",
"body": "Exclude IDEATION_CHAT*.md files from version control.\nThese contain raw ideation ideas; only formalized representations are committed.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add .gitignore for ideation notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T21:14:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "71f5ca2891b5c7bd1cd5f40cc53edd84486a51e8",
"body": "- .golangci.yaml: golangci-lint configuration\n- .github/: CI/CD workflows (if any)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add GitHub workflows and linter config",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T21:11:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "dadd9e49aa7abab698e8620452c89216171ecb87",
"body": "- docs/getting-started.md: quick start for maturity workflow\n- docs/releases/: version history and changelog\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add getting started guide and release notes",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T21:06:39Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "394c3cea81f1fbf615b537db9527b7f057d2389a",
"body": "- operations-saas-greenfield.json: SRE/Operations stack with SLO framework,\n observability, incident management, and reliability practices\n- security-saas-greenfield.json: B2B SaaS security with AppSec,\n supply chain, and runtime security capabilities\n\nBoth demonstrate PRISM integration with maturity criteria.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(examples): add reference architecture examples",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T21:06:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8239faa258a76555570fcf1a3de0769b9a6f0673",
"body": "README.md documents:\n- Installation (CLI and library)\n- CLI commands: validate, init, list, show, render\n- D2 and HTML rendering options\n- Web component usage and MkDocs integration\n- Go library usage with examples\n- Key concepts: layers, capabilities, lifecycle, PRISM integration\n- Validation rules\n\nMIT license.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add README and LICENSE",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T21:00:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b5e33df51e0e4415497d94fc102d20a9fa66db9b",
"body": "Lit-based custom element <capability-stack> for embedding in websites:\n- web/src/capability-stack.ts: main component\n- web/src/types.ts: TypeScript types mirroring Go types\n- web/index.html: demo page with controls\n- web/package.json, tsconfig.json, vite.config.ts: build config\n\nFeatures:\n- Load fro\n[…]\nk themes\n- Interactive hover tooltips\n- Status legend and foundational section\n- Filter by status\n\nWorks with MkDocs (unlike React components).\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(web): add Lit web component for capability stacks",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T20:57:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "11a875dcf1822d3cef94509a0f81a221abdfb8c6",
"body": "Add render command to capstack CLI:\n- Output formats: d2, html\n- D2 styles: default (with dependencies), grid (executive view)\n- HTML options: --standalone, --dark\n- Auto-detect format from file extension\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add render command for D2 and HTML output",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T19:11:40Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "480becc16ae69c08d7350feabc5096df4cf154a6",
"body": "Generate embeddable or standalone HTML from capability stacks:\n- render/html.go: HTML renderer with CSS styling\n - Embeddable fragment (default) or standalone document\n - Light and dark themes\n - Status legend and foundational section\n- render/html_test.go: comprehensive test coverage\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add static HTML rendering",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T19:11:25Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f78ad24012e971ee6befc02bafad0a67006ad40c",
"body": "Generate D2 diagrams from capability stacks:\n- render/d2.go: D2 renderer with two styles\n - default: standard view with dependency arrows\n - grid: clean executive view with aligned boxes, no arrows\n- render/d2_test.go: comprehensive test coverage\n\nSupports: dependencies, foundational layer, status legend, color by status/category\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(render): add D2 diagram rendering",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T17:28:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c5a2d8a59cb2c58876c98b6c794993e45be6e988",
"body": "Commands:\n- validate: validate capability stack documents\n- init: create new capability stack from template\n- list: list capabilities with filtering (--status, --layer, --tag)\n- show: display capability details\n\nUses cobra for CLI framework.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add capstack CLI with core commands",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:54:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "aa5fc49e283f9788fc99b98ecfbeb8ade3dd1906",
"body": "schema/generate.go: Generate JSON Schema from Go types using invopop/jsonschema\nschema/embed.go: Embed schema with accessor functions:\n- CapabilityStackSchema() []byte\n- CapabilityStackSchemaString() string\n- CapabilityStackSchemaMap() map[string]interface{}\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add JSON Schema generation and embedding",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:47:59Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "328d5ddc5c0480b62bfd244c6fc25fd701208ed6",
"body": "Coverage for:\n- constants_test.go: enum validation, All*() functions\n- validation_test.go: field validation, reference checks, cycle detection\n- capstack_test.go: getters, filtering, serialization\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "test: add unit tests for core types and validation",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:38:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9829f26bb99ca02c9ab0e52ee493a455f9fae5f3",
"body": "Comprehensive validation including:\n- ValidationError and ValidationErrors types\n- Required field validation (id, name, layerId)\n- Kebab-case ID format validation\n- Enum value validation for all constants\n- Reference integrity (layerId, categoryId must exist)\n- Unique ID enforcement (layers, categories, capabilities)\n- Dependency cycle detection using DFS\n- Tag format validation\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add validation with reference and cycle checks",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:36:19Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "87f783cd87078be94de56b429d5a80587ebe41ec",
"body": "Define the root document structure with:\n- Schema, Metadata, Layers, Categories, Capabilities, Foundational\n- PRISMIntegration for maturity model references\n\nIncludes getter methods:\n- GetCapabilityByID: find capability by ID\n- CapabilitiesByStatus: filter by lifecycle status\n- CapabilitiesByLayer: \n[…]\n by layer ID\n- CapabilitiesByTag: filter by tag\n- AllCapabilities: get all including foundational\n- LoadFromFile/SaveToFile: JSON serialization\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add CapabilityStack root document type",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:34:04Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "4a1a573a8eac04ecd2b9a0d3cc01284c5f00c8dc",
"body": "Define the main Capability entity with:\n- Identity: id, name, fullName, description\n- Organization: layerId, categoryId, owner, tags\n- Lifecycle: status, priority, targetDate, implementedAt\n- Dependencies: dependencies, enables arrays\n- Tooling: list of tools implementing the capability\n- Compliance: frameworkMappings for control references\n- Maturity: prismRef for PRISM integration\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add Capability type",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:33:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "29721e9581d30d505b81ead3afc152914a27c9bd",
"body": "Add foundational types that capabilities build upon:\n- Metadata: document metadata with name, version, domain, authors\n- Layer: horizontal bands representing phases or stages\n- Category: visual grouping with optional color\n- Tool: tooling information with vendor, type, status, URL\n- FrameworkMapping\n[…]\nef: reference to PRISM maturity model\n- PRISMIntegration: document-level PRISM configuration\n- LevelCriteria: M1-M5 maturity level descriptions\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add core types for capability stacks",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:32:42Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2362c53f22113cdf6d3fb4decb648f74b73b9d7d",
"body": "Define all enumeration types for capability stacks:\n- CapabilityStatus: planned, in-progress, implemented, operational, deprecated\n- Priority: critical, high, medium, low\n- Domain: security, ai, platform, data, observability, infrastructure, product, operations\n- Phase: plan, design, build, test, re\n[…]\niso-27001, soc2, pci-dss, cis, mitre-attack, owasp, slsa, ssdf\n\nEach enum includes All*() function for iteration and Is*Valid() for validation.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add enum constants and validators",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:32:29Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8226cf01f8106546e40414edb0887e6c08248731",
"body": "Initialize Go module with required dependencies:\n- github.com/invopop/jsonschema for schema generation\n- github.com/spf13/cobra for CLI\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add go.mod and dependencies",
"author_name": "John Wang",
"author_login": "grokify",
"committed_at": "2026-05-17T16:31:41Z",
"body_truncated": false,
"is_coding_agent": true
}
],
"releases_count": 8,
"commits_last_year": 77,
"latest_release_at": "2026-07-27T11:33:53Z",
"latest_release_tag": "v0.7.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 6,
"days_since_latest_release": 0,
"mean_days_between_releases": 10.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 85,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/grokify/prism-capability",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/grokify/prism-capability",
"is_deprecated": false,
"latest_version": "v0.7.1",
"repository_url": "https://github.com/grokify/prism-capability",
"versions_count": 8,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-27T11:28:51Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"web/tsconfig.json"
],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 36895,
"source_files_sampled": 37,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod",
"web/package.json"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go",
"npm"
],
"dependencies": [
{
"name": "github.com/grokify/priority-frameworks",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.2.0"
},
{
"name": "github.com/grokify/prism-core",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.4.0"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.2"
},
{
"name": "lit",
"manifest": "web/package.json",
"ecosystem": "npm",
"version_constraint": "^3.2.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "grokify",
"commits": 78,
"avatar_url": "https://avatars.githubusercontent.com/u/209872?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"go-ci.yaml",
"go-lint.yaml",
"go-sast-codeql.yaml"
],
"has_docs_dir": true,
"linter_configs": [
".golangci.yaml"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum",
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 5 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 4,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 9,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 7,
"reason": "3 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "4b07b493b365b6eff37cab264b53ba3d5a6adb6e",
"ran_at": "2026-07-27T17:50:40Z",
"aggregate_score": 4.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": true,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-27T11:44:38Z",
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/grokify/prism-capability",
"host": "github.com",
"name": "prism-capability",
"owner": "grokify"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"security": 49,
"vitality": 74,
"community": 40,
"governance": 42,
"engineering": 84
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"commits_last_year": 77,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 6
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "6/52 weeks with commits",
"points": 4.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 6
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "77 commits in the last year",
"points": 17,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 77
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 8,
"latest_release_tag": "v0.7.1",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 10.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "8 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 8
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~10.1 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 10.1
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 40,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 42,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 64,
"inputs": {
"followers": 158,
"owner_type": "User",
"is_verified": null,
"owner_login": "grokify",
"public_repos": 419,
"account_age_days": 5997
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "158 followers of grokify",
"points": 15.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 158,
"login": "grokify"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "419 public repos, account ~16 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 419
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/grokify/prism-capability"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 84,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 80,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": ".golangci.yaml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "https://grokify.github.io/prism-capability/",
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "https://grokify.github.io/prism-capability/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 49,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 49,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.9
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 2,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "3 existing vulnerabilities detected",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 3
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 66,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "78 of 78 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 78,
"sampled": 78
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum",
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"web/tsconfig.json"
],
"agent_commit_share": 0.859,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": ".golangci.yaml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "web/tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "web/tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "67 of the last 78 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 67,
"sampled": 78
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "dependency automation configured, none observed in the sampled commits",
"points": 5,
"status": "partial",
"details": [
{
"code": "dependency_bot_config_only",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 36895,
"source_files_sampled": 37,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/37 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 37,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Could not fetch npm package '@capstack/web-component' from its registry",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-27T17:50:45.560008Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/grokify/prism-capability.svg",
"full_name": "grokify/prism-capability",
"license_state": "standard",
"license_spdx": "MIT"
}