mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
7d3c049422
- Fix race condition: setGraph no longer wipes domainGraph on parallel fetch - Remove workflow/action aliases that conflicted with pipeline type - Remove duplicate onNodeDoubleClick handler in DomainGraphView - Add clearActiveDomain store action (replaces direct setState call) - Remove auto-switch to domain viewMode in setDomainGraph - Add DomainMetaSchema Zod validation for domainMeta fields - Add Array.isArray guards for domainMeta collections in NodeInfo - Remove as-any cast in getDomainMeta (use typed domainMeta directly) - Add "domain" filter category for domain/flow/step nodes - Keep flow discriminator in step ID normalization to prevent collisions - Update SKILL.md Phase 2 to use tool-based scanning (no missing script) - Update EDGE_LABELS comment to reflect 29 edge types - Bump version to 2.1.0 in all 4 required files Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
388 B
JSON
20 lines
388 B
JSON
{
|
|
"name": "@understand-anything/skill",
|
|
"version": "2.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@understand-anything/core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0"
|
|
}
|
|
}
|