@design-ai/cli 4.61.0 → 4.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +56 -0
- package/README.ko.md +5 -5
- package/README.md +5 -5
- package/cli/lib/check.mjs +56 -0
- package/cli/lib/examples.mjs +4 -0
- package/cli/lib/pack.mjs +29 -1
- package/cli/lib/recall.mjs +2 -2
- package/cli/lib/route.mjs +58 -3
- package/cli/lib/search-ranked.mjs +31 -11
- package/docs/AI-LEARNING-PHASE2.md +11 -0
- package/docs/DOGFOOD-DASHBOARD-FINDINGS.md +52 -0
- package/docs/DOGFOOD-SDK-FINDINGS.md +56 -0
- package/docs/NEXT-SURFACE-DECISION.md +25 -0
- package/docs/ROADMAP.md +77 -1
- package/docs/SDK.md +6 -0
- package/docs/external-status.md +11 -11
- package/docs/integrations/agent-sdk-walkthrough.ko.md +219 -0
- package/docs/integrations/agent-sdk-walkthrough.md +219 -0
- package/examples/README.md +12 -0
- package/examples/dashboard-design-settlement.md +87 -0
- package/examples/flow-design-report-block.md +141 -0
- package/knowledge/COVERAGE.md +8 -5
- package/knowledge/patterns/trust-safety-moderation.md +107 -0
- package/package.json +1 -1
- package/tools/audit/integration-check.py +1 -0
- package/tools/audit/smoke_assertions.py +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design-ai/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.63.0",
|
|
4
4
|
"description": "Senior product designer for any AI coding agent. Installs design-ai (20 skills, 17 commands, 4 agents) into Claude Code globally. Korean market depth plus website improvement control tower.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"design-ai": "cli/bin/design-ai.mjs",
|
|
@@ -688,6 +688,8 @@ EXPECTED_ROUTE_CATALOG_IDS = (
|
|
|
688
688
|
"figma-token-sync",
|
|
689
689
|
"design-pr-review",
|
|
690
690
|
"stability-review",
|
|
691
|
+
"flow-design",
|
|
692
|
+
"dashboard-design",
|
|
691
693
|
)
|
|
692
694
|
EXPECTED_PROMPT_SLASH_COMMAND = "/design-component-spec"
|
|
693
695
|
EXPECTED_PROMPT_QUALITY_COMMAND = "design-ai check output.md --route component-spec --strict"
|