- Updated the README to reflect new features in Claude Code, including the ability to spawn subagents via the Task tool and coordinate teams with improved visibility. - Added details on the rendering of subagent sessions as expandable inline cards, including execution traces, metrics, and tool calls. - Enhanced description of teammate messages, highlighting color-coded cards and team lifecycle visibility. - Clarified session summary metrics to differentiate between teammate and subagent counts for better user insights. This commit significantly improves the documentation of team and subagent visualization features, providing users with a clearer understanding of the capabilities and enhancements in the application.
20 lines
545 B
JSON
20 lines
545 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@next/schema.json",
|
|
"entry": [
|
|
"src/main/index.ts",
|
|
"src/preload/index.ts",
|
|
"src/renderer/main.tsx",
|
|
"electron.vite.config.ts",
|
|
"remotion/index.ts",
|
|
"remotion/**/*.{ts,tsx}"
|
|
],
|
|
"project": ["src/**/*.{ts,tsx}!", "remotion/**/*.{ts,tsx}!"],
|
|
"ignore": ["tsconfig*.json"],
|
|
"paths": {
|
|
"@main/*": ["./src/main/*"],
|
|
"@renderer/*": ["./src/renderer/*"],
|
|
"@preload/*": ["./src/preload/*"],
|
|
"@shared/*": ["./src/shared/*"]
|
|
},
|
|
"ignoreDependencies": ["remotion"]
|
|
}
|