openpencil/apps/web/tsconfig.json
Kayshen-X a7d73ebb62 feat(ai): pencil-style agentic design tool-loop, multi-chat tabs, #27 panel restyle
Built-in design generation now runs as an agentic MCP tool-loop (reusing the
agent-rs BuiltInProvider), gated behind OPENPENCIL_DESIGN_AGENT_LOOP / the
Settings experimental toggle; the orchestrator stays the default.

- design-agent system prompt + in-process design toolset (parity-locked with
  the MCP surface) + flag-gated Intent::Design routing
- spawn_agents execution as sequential sub-loops + live creation-mode badges
  (per-agent glow + 'N/M designing...' header)
- new MCP tools: get_guidelines, ToolSearch, get_screenshot, get_editor_state,
  export_nodes, spawn_agents; style-guide local audit
- #27 AI panel restyle: rounded tool cards + green check-rings, gray user
  bubbles, model-pill bottom toolbar, header, empty-state pills, the
  PARALLEL AGENTS (agent_team_size) 1x-6x chip dropdown
- multi-chat tabs: ChatSessions model (Deref-to-active) + tab row UI
  (switch / close / + / Cmd+T) with each run bound to its tab

Large checkpoint commit spanning the working tree (Rust shell crates).
2026-07-02 21:21:06 +08:00

39 lines
1.4 KiB
JSON

{
"include": ["**/*.ts", "**/*.tsx"],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@zseven-w/pen-types": ["../../packages/pen-types/src/index.ts"],
"@zseven-w/pen-core": ["../../packages/pen-core/src/index.ts"],
"@zseven-w/pen-figma": ["../../packages/pen-figma/src/index.ts"],
"@zseven-w/pen-renderer": ["../../packages/pen-renderer/src/index.ts"],
"@zseven-w/pen-engine": ["../../packages/pen-engine/src/index.ts"],
"@zseven-w/pen-react": ["../../packages/pen-react/src/index.ts"],
"@zseven-w/pen-mcp": ["../../packages/pen-mcp/src/index.ts"],
"@zseven-w/pen-ai-skills": ["../../packages/pen-ai-skills/src/index.ts"],
"@zseven-w/pen-ai-skills/style-guide": [
"../../packages/pen-ai-skills/src/style-guide/index.ts"
],
"@zseven-w/pen-ai-skills/_generated/style-guide-registry": [
"../../packages/pen-ai-skills/src/_generated/style-guide-registry.ts"
]
}
}
}