[codex] Add skills CLI and catalog management (#6782)
## Thinking Path
> - Paperclip orchestrates AI agents for zero-human companies through
company-scoped control-plane workflows.
> - Agents need reusable, inspectable skills that can be installed,
reset, audited, exported, and assigned without bespoke local setup.
> - The existing skill truth model needed cleanup so bundled skills,
optional catalog skills, runtime skills, and adapter-provided skills
have clear provenance.
> - Operators also need a practical CLI and board UI for discovering and
managing company skills.
> - This pull request adds the skills CLI, packaged skills catalog,
company skills APIs, and catalog-aware board UI.
> - The benefit is a more reusable Paperclip company setup where skills
are portable, auditable, and easier for operators and agents to manage.
## What Changed
- Added `paperclipai skills` CLI commands and coverage for catalog
listing, installing, resetting, and inspecting company skills.
- Added a packaged `@paperclipai/skills-catalog` workspace with bundled
and optional skill content plus validation/build tests.
- Added shared company-skill types and validators used across CLI,
server, and UI contracts.
- Added server catalog APIs/services for company skill catalog
operations, reset semantics, audit behavior, and portability provenance.
- Updated adapter skill handling so runtime/catalog provenance remains
explicit across local adapters.
- Added board UI support for browsing and managing catalog-backed
company skills.
- Updated docs for the skills CLI/catalog flow and the company skills
Paperclip skill reference.
- Rebased the branch onto current `paperclipai/paperclip:master`; no
`pnpm-lock.yaml`, `.github/workflows`, or migration files are included
in the final PR diff.
## Verification
- Passed: `pnpm run preflight:workspace-links && pnpm exec vitest run
cli/src/__tests__/skills.test.ts
packages/skills-catalog/src/catalog-builder.test.ts
packages/skills-catalog/src/shipped-catalog.test.ts
packages/shared/src/validators/company-skill.test.ts
packages/adapter-utils/src/server-utils.test.ts
packages/plugins/create-paperclip-plugin/src/entrypoints.test.ts
server/src/__tests__/company-skills-catalog-service.test.ts
server/src/__tests__/company-skills-routes.test.ts
server/src/__tests__/company-portability.test.ts`.
- Passed: `pnpm exec vitest run
server/src/__tests__/workspace-runtime.test.ts -t "default
branch|origin/master|symbolic-ref"`.
- Attempted: full `server/src/__tests__/workspace-runtime.test.ts`. Four
provisioning tests failed while seeding an isolated worktree database
from the local Paperclip instance because the local plugin schema dump
contains a duplicate-column foreign key
(`plugin_content_machine_18a7bc327b.content_case_signals`). The
default-branch tests touched by the rebase conflict passed in the
focused run above.
- Checked final diff: no `pnpm-lock.yaml`, no `.github/workflows`, and
no migration-file changes relative to `master`.
## Risks
- Medium: this is a broad skills/catalog change touching CLI, server
APIs, shared contracts, adapter skill sync, and UI.
- Catalog validation and reset semantics need careful reviewer attention
because they affect reusable company setup and portability.
- No database migrations are included in this PR, so there is no
migration ordering/idempotency risk in the final diff.
- No lockfile is included by design; dependency resolution will be
handled by the repository lockfile workflow.
## Model Used
- OpenAI Codex coding agent based on GPT-5, running in Paperclip via the
`codex_local` adapter with shell, git, GitHub CLI, and code-editing tool
access. Exact hosted model build/context-window metadata is not exposed
in this runtime.
## Checklist
- [x] I have included a thinking path that traces from project context
to this change
- [x] I have specified the model used (with version and capability
details)
- [x] I have checked ROADMAP.md and confirmed this PR does not duplicate
planned core work
- [x] I have run targeted tests locally and documented the local
workspace-runtime seed failure above
- [x] I have added or updated tests where applicable
- [x] If this change affects the UI, screenshots were intentionally
omitted per PAP-10124 instructions; UI behavior is covered by tests and
reviewer inspection
- [x] I have updated relevant documentation to reflect my changes
- [x] I have considered and documented any risks above
- [x] I will address all Greptile and reviewer comments before
requesting merge
---------
Co-authored-by: Paperclip <noreply@paperclip.ing>
2026-05-28 07:33:51 -10:00
{
"schemaVersion" : 1 ,
"packageName" : "@paperclipai/skills-catalog" ,
"packageVersion" : "0.3.1" ,
2026-05-31 18:07:26 +00:00
"generatedAt" : "2026-05-31T18:06:11.126Z" ,
[codex] Add skills CLI and catalog management (#6782)
## Thinking Path
> - Paperclip orchestrates AI agents for zero-human companies through
company-scoped control-plane workflows.
> - Agents need reusable, inspectable skills that can be installed,
reset, audited, exported, and assigned without bespoke local setup.
> - The existing skill truth model needed cleanup so bundled skills,
optional catalog skills, runtime skills, and adapter-provided skills
have clear provenance.
> - Operators also need a practical CLI and board UI for discovering and
managing company skills.
> - This pull request adds the skills CLI, packaged skills catalog,
company skills APIs, and catalog-aware board UI.
> - The benefit is a more reusable Paperclip company setup where skills
are portable, auditable, and easier for operators and agents to manage.
## What Changed
- Added `paperclipai skills` CLI commands and coverage for catalog
listing, installing, resetting, and inspecting company skills.
- Added a packaged `@paperclipai/skills-catalog` workspace with bundled
and optional skill content plus validation/build tests.
- Added shared company-skill types and validators used across CLI,
server, and UI contracts.
- Added server catalog APIs/services for company skill catalog
operations, reset semantics, audit behavior, and portability provenance.
- Updated adapter skill handling so runtime/catalog provenance remains
explicit across local adapters.
- Added board UI support for browsing and managing catalog-backed
company skills.
- Updated docs for the skills CLI/catalog flow and the company skills
Paperclip skill reference.
- Rebased the branch onto current `paperclipai/paperclip:master`; no
`pnpm-lock.yaml`, `.github/workflows`, or migration files are included
in the final PR diff.
## Verification
- Passed: `pnpm run preflight:workspace-links && pnpm exec vitest run
cli/src/__tests__/skills.test.ts
packages/skills-catalog/src/catalog-builder.test.ts
packages/skills-catalog/src/shipped-catalog.test.ts
packages/shared/src/validators/company-skill.test.ts
packages/adapter-utils/src/server-utils.test.ts
packages/plugins/create-paperclip-plugin/src/entrypoints.test.ts
server/src/__tests__/company-skills-catalog-service.test.ts
server/src/__tests__/company-skills-routes.test.ts
server/src/__tests__/company-portability.test.ts`.
- Passed: `pnpm exec vitest run
server/src/__tests__/workspace-runtime.test.ts -t "default
branch|origin/master|symbolic-ref"`.
- Attempted: full `server/src/__tests__/workspace-runtime.test.ts`. Four
provisioning tests failed while seeding an isolated worktree database
from the local Paperclip instance because the local plugin schema dump
contains a duplicate-column foreign key
(`plugin_content_machine_18a7bc327b.content_case_signals`). The
default-branch tests touched by the rebase conflict passed in the
focused run above.
- Checked final diff: no `pnpm-lock.yaml`, no `.github/workflows`, and
no migration-file changes relative to `master`.
## Risks
- Medium: this is a broad skills/catalog change touching CLI, server
APIs, shared contracts, adapter skill sync, and UI.
- Catalog validation and reset semantics need careful reviewer attention
because they affect reusable company setup and portability.
- No database migrations are included in this PR, so there is no
migration ordering/idempotency risk in the final diff.
- No lockfile is included by design; dependency resolution will be
handled by the repository lockfile workflow.
## Model Used
- OpenAI Codex coding agent based on GPT-5, running in Paperclip via the
`codex_local` adapter with shell, git, GitHub CLI, and code-editing tool
access. Exact hosted model build/context-window metadata is not exposed
in this runtime.
## Checklist
- [x] I have included a thinking path that traces from project context
to this change
- [x] I have specified the model used (with version and capability
details)
- [x] I have checked ROADMAP.md and confirmed this PR does not duplicate
planned core work
- [x] I have run targeted tests locally and documented the local
workspace-runtime seed failure above
- [x] I have added or updated tests where applicable
- [x] If this change affects the UI, screenshots were intentionally
omitted per PAP-10124 instructions; UI behavior is covered by tests and
reviewer inspection
- [x] I have updated relevant documentation to reflect my changes
- [x] I have considered and documented any risks above
- [x] I will address all Greptile and reviewer comments before
requesting merge
---------
Co-authored-by: Paperclip <noreply@paperclip.ing>
2026-05-28 07:33:51 -10:00
"skills" : [
{
"id" : "paperclipai:bundled:docs:doc-maintenance" ,
"key" : "paperclipai/bundled/docs/doc-maintenance" ,
"kind" : "bundled" ,
"category" : "docs" ,
"slug" : "doc-maintenance" ,
"name" : "doc-maintenance" ,
"description" : "Keep project docs aligned with recent code and feature changes — detect drift, update affected pages, and add release-relevant notes without rewriting unchanged sections." ,
"path" : "catalog/bundled/docs/doc-maintenance" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"engineer" ,
"product" ,
"devrel"
] ,
"requires" : [ ] ,
"tags" : [
"docs" ,
"documentation" ,
"release-notes"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 4478 ,
"sha256" : "fb0353386c5e5e5e13bcbb3233f044e3dccecf371f429d6328f26c26d7cb6169"
}
] ,
"contentHash" : "sha256:2e02299210fd17c1fe1867b4ee8c144a11b6fe1fe481f83b8268cfbaaf10f9aa"
} ,
{
"id" : "paperclipai:bundled:paperclip-operations:issue-triage" ,
"key" : "paperclipai/bundled/paperclip-operations/issue-triage" ,
"kind" : "bundled" ,
"category" : "paperclip-operations" ,
"slug" : "issue-triage" ,
"name" : "issue-triage" ,
"description" : "Triage Paperclip inbox issues that are stale, blocked, in-review, or assigned-but-not-progressing, and decide a single next action per issue (resume, reassign, unblock, escalate, or close)." ,
"path" : "catalog/bundled/paperclip-operations/issue-triage" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"manager" ,
"ceo" ,
"engineer"
] ,
"requires" : [ ] ,
"tags" : [
"paperclip" ,
"triage" ,
"inbox" ,
"workflow"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 4042 ,
"sha256" : "df5bdc8bf5e017b7ba5f70a4b5323fad51d0c323278f386580f26cf43ad09160"
}
] ,
"contentHash" : "sha256:88dc13560371fb364963782cb4f6eeb4090fcde92ee3774479428ed6b90e11c1"
} ,
{
"id" : "paperclipai:bundled:paperclip-operations:task-planning" ,
"key" : "paperclipai/bundled/paperclip-operations/task-planning" ,
"kind" : "bundled" ,
"category" : "paperclip-operations" ,
"slug" : "task-planning" ,
"name" : "task-planning" ,
"description" : "Turn a Paperclip issue or request into a structured implementation plan with child task graph, blockers, owners, and acceptance criteria, then save it as the issue `plan` document." ,
"path" : "catalog/bundled/paperclip-operations/task-planning" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"manager" ,
"engineer" ,
"product"
] ,
"requires" : [ ] ,
"tags" : [
"paperclip" ,
"planning" ,
"issues" ,
"delegation"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 4649 ,
"sha256" : "2ff61e12dfaa4cf8cc548529fd176f55f1b1f5292ff9dd3eb2cb331417ab5e4e"
}
] ,
"contentHash" : "sha256:4fb46a4bcefad4fd46fae48c433ee497112509a8e19fb8a7745ead44d219b498"
} ,
2026-05-31 18:07:26 +00:00
{
"id" : "paperclipai:bundled:product:wireframe" ,
"key" : "paperclipai/bundled/product/wireframe" ,
"kind" : "bundled" ,
"category" : "product" ,
"slug" : "wireframe" ,
"name" : "wireframe" ,
"description" : "Produce low-fidelity black-and-white UI wireframes as standalone SVG files, optionally bundled into a single-page HTML viewer and published via the here-now skill. Use when the user asks to \"wireframe X\", \"sketch a screen for\", \"draft a layout\", \"low-fi mockup\", \"rough mock\", \"make a page to view the wireframes\", \"build a viewer for these screens\", or to \"deploy / publish / host the wireframes\". Do NOT use when the user wants production UI code, branded designs, hi-fi mockups, or animated/interactive prototypes — use frontend-design or similar instead." ,
"path" : "catalog/bundled/product/wireframe" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "assets" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"designer" ,
"product" ,
"engineer"
] ,
"requires" : [ ] ,
"tags" : [
"design" ,
"wireframe" ,
"ux" ,
"prototyping" ,
"svg"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 11887 ,
"sha256" : "a910d038d8cdd13615b82f44a2195b781ebccf01c49f9c58babd43b0701fe644"
} ,
{
"path" : "assets/site-template.html" ,
"kind" : "asset" ,
"sizeBytes" : 14791 ,
"sha256" : "8886ad77c386c17b0457f11624aab136c33db7f28dcd6f10fc18e9d833d0950f"
} ,
{
"path" : "assets/template-mobile.svg" ,
"kind" : "asset" ,
"sizeBytes" : 925 ,
"sha256" : "dc32af257df1f986b87a7b30a6104de825057dc4d6f12b381f5a28308f0002f0"
} ,
{
"path" : "assets/template.svg" ,
"kind" : "asset" ,
"sizeBytes" : 1262 ,
"sha256" : "63f8adb8eb4b21dea6fd442b9e9312704c419535eb577d4ef0bfb54410fd576b"
} ,
{
"path" : "references/components.md" ,
"kind" : "reference" ,
"sizeBytes" : 14806 ,
"sha256" : "4ce18f418d78b13cdfa6fe8070173044a631576cd2b999571e6703f58894496c"
} ,
{
"path" : "references/examples.md" ,
"kind" : "reference" ,
"sizeBytes" : 16108 ,
"sha256" : "18f486e95a578a50cf6c9f93394b82534392771320692e4876edf17054bfae55"
} ,
{
"path" : "references/grid-system.md" ,
"kind" : "reference" ,
"sizeBytes" : 4581 ,
"sha256" : "017260d2216859d57e5fa869e0efc6b88c7ed4d8a8a4f5af04fe89a3ef2445bd"
}
] ,
"contentHash" : "sha256:0bd9a9fdc656d529e3f97c00cd504dcf72d3a4fecb8b0504ca2fe3e00d63287f"
} ,
[codex] Add skills CLI and catalog management (#6782)
## Thinking Path
> - Paperclip orchestrates AI agents for zero-human companies through
company-scoped control-plane workflows.
> - Agents need reusable, inspectable skills that can be installed,
reset, audited, exported, and assigned without bespoke local setup.
> - The existing skill truth model needed cleanup so bundled skills,
optional catalog skills, runtime skills, and adapter-provided skills
have clear provenance.
> - Operators also need a practical CLI and board UI for discovering and
managing company skills.
> - This pull request adds the skills CLI, packaged skills catalog,
company skills APIs, and catalog-aware board UI.
> - The benefit is a more reusable Paperclip company setup where skills
are portable, auditable, and easier for operators and agents to manage.
## What Changed
- Added `paperclipai skills` CLI commands and coverage for catalog
listing, installing, resetting, and inspecting company skills.
- Added a packaged `@paperclipai/skills-catalog` workspace with bundled
and optional skill content plus validation/build tests.
- Added shared company-skill types and validators used across CLI,
server, and UI contracts.
- Added server catalog APIs/services for company skill catalog
operations, reset semantics, audit behavior, and portability provenance.
- Updated adapter skill handling so runtime/catalog provenance remains
explicit across local adapters.
- Added board UI support for browsing and managing catalog-backed
company skills.
- Updated docs for the skills CLI/catalog flow and the company skills
Paperclip skill reference.
- Rebased the branch onto current `paperclipai/paperclip:master`; no
`pnpm-lock.yaml`, `.github/workflows`, or migration files are included
in the final PR diff.
## Verification
- Passed: `pnpm run preflight:workspace-links && pnpm exec vitest run
cli/src/__tests__/skills.test.ts
packages/skills-catalog/src/catalog-builder.test.ts
packages/skills-catalog/src/shipped-catalog.test.ts
packages/shared/src/validators/company-skill.test.ts
packages/adapter-utils/src/server-utils.test.ts
packages/plugins/create-paperclip-plugin/src/entrypoints.test.ts
server/src/__tests__/company-skills-catalog-service.test.ts
server/src/__tests__/company-skills-routes.test.ts
server/src/__tests__/company-portability.test.ts`.
- Passed: `pnpm exec vitest run
server/src/__tests__/workspace-runtime.test.ts -t "default
branch|origin/master|symbolic-ref"`.
- Attempted: full `server/src/__tests__/workspace-runtime.test.ts`. Four
provisioning tests failed while seeding an isolated worktree database
from the local Paperclip instance because the local plugin schema dump
contains a duplicate-column foreign key
(`plugin_content_machine_18a7bc327b.content_case_signals`). The
default-branch tests touched by the rebase conflict passed in the
focused run above.
- Checked final diff: no `pnpm-lock.yaml`, no `.github/workflows`, and
no migration-file changes relative to `master`.
## Risks
- Medium: this is a broad skills/catalog change touching CLI, server
APIs, shared contracts, adapter skill sync, and UI.
- Catalog validation and reset semantics need careful reviewer attention
because they affect reusable company setup and portability.
- No database migrations are included in this PR, so there is no
migration ordering/idempotency risk in the final diff.
- No lockfile is included by design; dependency resolution will be
handled by the repository lockfile workflow.
## Model Used
- OpenAI Codex coding agent based on GPT-5, running in Paperclip via the
`codex_local` adapter with shell, git, GitHub CLI, and code-editing tool
access. Exact hosted model build/context-window metadata is not exposed
in this runtime.
## Checklist
- [x] I have included a thinking path that traces from project context
to this change
- [x] I have specified the model used (with version and capability
details)
- [x] I have checked ROADMAP.md and confirmed this PR does not duplicate
planned core work
- [x] I have run targeted tests locally and documented the local
workspace-runtime seed failure above
- [x] I have added or updated tests where applicable
- [x] If this change affects the UI, screenshots were intentionally
omitted per PAP-10124 instructions; UI behavior is covered by tests and
reviewer inspection
- [x] I have updated relevant documentation to reflect my changes
- [x] I have considered and documented any risks above
- [x] I will address all Greptile and reviewer comments before
requesting merge
---------
Co-authored-by: Paperclip <noreply@paperclip.ing>
2026-05-28 07:33:51 -10:00
{
"id" : "paperclipai:bundled:quality:qa-acceptance" ,
"key" : "paperclipai/bundled/quality/qa-acceptance" ,
"kind" : "bundled" ,
"category" : "quality" ,
"slug" : "qa-acceptance" ,
"name" : "qa-acceptance" ,
"description" : "Produce QA acceptance criteria and a manual validation plan for a feature change — golden path, edge cases, error states, performance limits, and explicit pass/fail evidence." ,
"path" : "catalog/bundled/quality/qa-acceptance" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"qa" ,
"engineer" ,
"product"
] ,
"requires" : [ ] ,
"tags" : [
"qa" ,
"acceptance" ,
"validation" ,
"testing"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 3861 ,
"sha256" : "c631b437ab26d104af6cdb963d8f679a9341439041b3cb3ec8835f4ff551b378"
}
] ,
"contentHash" : "sha256:32372dacaf62e93454b9855968c4eec96456ba78b509f450b3dfaa48e31ef356"
} ,
{
"id" : "paperclipai:bundled:software-development:github-pr-workflow" ,
"key" : "paperclipai/bundled/software-development/github-pr-workflow" ,
"kind" : "bundled" ,
"category" : "software-development" ,
"slug" : "github-pr-workflow" ,
"name" : "github-pr-workflow" ,
"description" : "Prepare a GitHub pull request from a feature branch — branch hygiene, commit shape, title/body, verification notes, screenshots for UI work, and replies to review comments." ,
"path" : "catalog/bundled/software-development/github-pr-workflow" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"engineer"
] ,
"requires" : [ ] ,
"tags" : [
"github" ,
"pull-requests" ,
"code-review" ,
"release"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 3970 ,
"sha256" : "f498ec4ebb1779dea37adeb1db8a8b22316282798e35ee02e2fc5ff627d7e261"
}
] ,
"contentHash" : "sha256:90f278c89aa0711be150c1cd2456ca25620d02f36995b113ca9837d756a37f6c"
} ,
{
"id" : "paperclipai:optional:browser:agent-browser" ,
"key" : "paperclipai/optional/browser/agent-browser" ,
"kind" : "optional" ,
"category" : "browser" ,
"slug" : "agent-browser" ,
"name" : "agent-browser" ,
"description" : "Drive a real browser to inspect or interact with a web page or app — navigate, take screenshots, read console and network, fill simple forms — for verification tasks, not unattended automation." ,
"path" : "catalog/optional/browser/agent-browser" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"qa" ,
"engineer" ,
"researcher"
] ,
"requires" : [ ] ,
"tags" : [
"browser" ,
"puppeteer" ,
"playwright" ,
"verification"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 5133 ,
"sha256" : "362f7b9d02297782bc6f0c093f495b8a0304a75bcf4b42e5c280a42b1f757b7d"
}
] ,
"contentHash" : "sha256:eabb2c9f7b5e1a27ebb1e05a711d61433a266478154cd671a685e99e67aadea2"
} ,
{
"id" : "paperclipai:optional:content:release-announcement" ,
"key" : "paperclipai/optional/content/release-announcement" ,
"kind" : "optional" ,
"category" : "content" ,
"slug" : "release-announcement" ,
"name" : "release-announcement" ,
"description" : "Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler." ,
"path" : "catalog/optional/content/release-announcement" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"devrel" ,
"product" ,
"writer"
] ,
"requires" : [ ] ,
"tags" : [
"release" ,
"changelog" ,
"announcement" ,
"communication"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 4416 ,
"sha256" : "062810ac34e9edc89efa701fec2eee60f16949d1944cc2cae49803cb91e8cbf4"
}
] ,
"contentHash" : "sha256:f22a9ed696e6614c6db2757a149f48b3295e81f78c27d065d9cb164cf4f8a9bd"
} ,
{
"id" : "paperclipai:optional:product:design-critique" ,
"key" : "paperclipai/optional/product/design-critique" ,
"kind" : "optional" ,
"category" : "product" ,
"slug" : "design-critique" ,
"name" : "design-critique" ,
"description" : "Give a structured product design critique — user job clarity, hierarchy, affordance, error states, accessibility, and consistency — focused on what to change, in what order, and why." ,
"path" : "catalog/optional/product/design-critique" ,
"entrypoint" : "SKILL.md" ,
"trustLevel" : "markdown_only" ,
"compatibility" : "compatible" ,
"defaultInstall" : false ,
"recommendedForRoles" : [
"designer" ,
"product" ,
"engineer"
] ,
"requires" : [ ] ,
"tags" : [
"design" ,
"product" ,
"ux" ,
"review"
] ,
"files" : [
{
"path" : "SKILL.md" ,
"kind" : "skill" ,
"sizeBytes" : 4851 ,
"sha256" : "022e619baf6cc25725946279cb8052d22af090dd6cd6dc8c20f17867f71a5d8e"
}
] ,
"contentHash" : "sha256:429f94df398a0697042b5bbe4755b1ff1a230aa5f41d99118ad37493ac65d21c"
}
]
}