mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
- Remove ChatPanel and @anthropic-ai/sdk dependency (redundant with /understand-chat) - Replace Monaco editor with styled summary code viewer - New graph-first layout: 75% graph + 360px right sidebar - Dark luxury aesthetic: deep blacks, gold/amber accents, DM Serif Display typography - Add ProjectOverview component for sidebar default state - Learn persona now shows tour panel directly in sidebar - Add schema validation on graph load with error banner - Defensive null checks in store for tour methods - Agent pipeline: write intermediate results to disk instead of context - Agent models: sonnet for simple tasks, opus for complex (no haiku) - Prompt-engineer all 5 agent prompts and SKILL.md - Auto-trigger /understand-dashboard after /understand completes - Add dashboard screenshot to README - Bump version to 1.0.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
900 B
JSON
42 lines
900 B
JSON
{
|
|
"name": "@understand-anything/core",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./search": {
|
|
"types": "./dist/search.d.ts",
|
|
"default": "./dist/search.js"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types.d.ts",
|
|
"default": "./dist/types.js"
|
|
},
|
|
"./schema": {
|
|
"types": "./dist/schema.d.ts",
|
|
"default": "./dist/schema.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0"
|
|
},
|
|
"dependencies": {
|
|
"fuse.js": "^7.1.0",
|
|
"tree-sitter-javascript": "^0.25.0",
|
|
"tree-sitter-typescript": "^0.23.2",
|
|
"web-tree-sitter": "^0.26.6",
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|