├── .claude ├── agents │ └── kfc │ │ ├── spec-design.md │ │ ├── spec-impl.md │ │ ├── spec-judge.md │ │ ├── spec-requirements.md │ │ ├── spec-system-prompt-loader.md │ │ ├── spec-tasks.md │ │ └── spec-test.md ├── commands │ └── publish.md ├── settings │ └── kfc-settings.json ├── specs │ ├── claude-code-spec-subagent │ │ ├── design.md │ │ ├── requirements.md │ │ └── tasks.md │ ├── claude-permission-verification │ │ ├── acceptance-report.md │ │ ├── design.md │ │ ├── requirements.md │ │ └── tasks.md │ └── prompt-separation │ │ ├── design.md │ │ ├── requirements.md │ │ └── tasks.md └── system-prompts │ └── spec-workflow-starter.md ├── .github └── workflows │ ├── claude-code-review.yml │ ├── claude.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── icon.png ├── icons └── kiro.svg ├── jest.config.js ├── media ├── image.png └── permission.html ├── package.json ├── screenshots ├── image.png └── new-spec-with-agents.png ├── scripts ├── build-prompts.js └── watch-prompts.js ├── src ├── constants.ts ├── extension.ts ├── features │ ├── agents │ │ └── agentManager.ts │ ├── permission │ │ ├── configReader.ts │ │ ├── permissionCache.ts │ │ ├── permissionManager.ts │ │ └── permissionWebview.ts │ ├── spec │ │ └── specManager.ts │ └── steering │ │ └── steeringManager.ts ├── prompts │ ├── spec │ │ ├── create-spec-with-agents.md │ │ ├── create-spec.md │ │ └── impl-task.md │ ├── steering │ │ ├── create-custom-steering.md │ │ ├── delete-steering.md │ │ ├── init-steering.md │ │ └── refine-steering.md │ └── target │ │ ├── index.ts │ │ ├── spec │ │ ├── create-spec-with-agents.ts │ │ ├── create-spec.ts │ │ └── impl-task.ts │ │ └── steering │ │ ├── create-custom-steering.ts │ │ ├── delete-steering.ts │ │ ├── init-steering.ts │ │ └── refine-steering.ts ├── providers │ ├── agentsExplorerProvider.ts │ ├── claudeCodeProvider.ts │ ├── hooksExplorerProvider.ts │ ├── mcpExplorerProvider.ts │ ├── overviewProvider.ts │ ├── specExplorerProvider.ts │ ├── specTaskCodeLensProvider.ts │ └── steeringExplorerProvider.ts ├── resources │ ├── agents │ │ ├── spec-design.md │ │ ├── spec-impl.md │ │ ├── spec-judge.md │ │ ├── spec-requirements.md │ │ ├── spec-system-prompt-loader.md │ │ ├── spec-tasks.md │ │ └── spec-test.md │ └── prompts │ │ └── spec-workflow-starter.md ├── services │ └── promptLoader.ts ├── types │ └── prompt.types.ts └── utils │ ├── configManager.ts │ ├── notificationUtils.ts │ └── updateChecker.ts ├── tests ├── README.md ├── __mocks__ │ └── vscode.ts ├── e2e │ ├── diff │ │ ├── create-custom-steering-diff.md │ │ ├── create-spec-diff.md │ │ ├── init-steering-diff.md │ │ ├── refine-0.1.9-test.md │ │ ├── refine-steering-diff.md │ │ └── report.md │ ├── prompt-0.1.8 │ │ ├── create-custom-steering.md │ │ ├── create-spec.md │ │ ├── init-steering.md │ │ └── refine-steering.md │ └── prompt-0.1.9 │ │ ├── create-custom-steering.md │ │ ├── create-spec.md │ │ ├── init-steering.md │ │ └── refine-steering.md ├── integration │ ├── __snapshots__ │ │ └── promptSnapshots.test.ts.snap │ ├── permission │ │ ├── permissionSystem.md │ │ ├── permissionSystem.test.ts │ │ └── permissionSystemReport.md │ ├── promptSnapshots.md │ ├── promptSnapshots.test.ts │ ├── prompts.md │ └── prompts.test.ts └── unit │ ├── features │ ├── agents │ │ ├── agentManager.md │ │ └── agentManager.test.ts │ └── permission │ │ ├── configReader.md │ │ ├── configReader.test.ts │ │ ├── permissionCache.md │ │ ├── permissionCache.test.ts │ │ ├── permissionManager.md │ │ └── permissionManager.test.ts │ ├── prompts │ ├── markdownParsing.md │ └── markdownParsing.test.ts │ ├── providers │ ├── agentsExplorerProvider.md │ └── agentsExplorerProvider.test.ts │ ├── services │ ├── promptLoader.md │ └── promptLoader.test.ts │ └── utils │ ├── updateChecker.md │ └── updateChecker.test.ts ├── tsconfig.json ├── tsconfig.test.json └── webpack.config.js /.claude/agents/kfc/spec-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-design.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-impl.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-judge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-judge.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-requirements.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-system-prompt-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-system-prompt-loader.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-tasks.md -------------------------------------------------------------------------------- /.claude/agents/kfc/spec-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/agents/kfc/spec-test.md -------------------------------------------------------------------------------- /.claude/commands/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/commands/publish.md -------------------------------------------------------------------------------- /.claude/settings/kfc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/settings/kfc-settings.json -------------------------------------------------------------------------------- /.claude/specs/claude-code-spec-subagent/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-code-spec-subagent/design.md -------------------------------------------------------------------------------- /.claude/specs/claude-code-spec-subagent/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-code-spec-subagent/requirements.md -------------------------------------------------------------------------------- /.claude/specs/claude-code-spec-subagent/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-code-spec-subagent/tasks.md -------------------------------------------------------------------------------- /.claude/specs/claude-permission-verification/acceptance-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-permission-verification/acceptance-report.md -------------------------------------------------------------------------------- /.claude/specs/claude-permission-verification/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-permission-verification/design.md -------------------------------------------------------------------------------- /.claude/specs/claude-permission-verification/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-permission-verification/requirements.md -------------------------------------------------------------------------------- /.claude/specs/claude-permission-verification/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/claude-permission-verification/tasks.md -------------------------------------------------------------------------------- /.claude/specs/prompt-separation/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/prompt-separation/design.md -------------------------------------------------------------------------------- /.claude/specs/prompt-separation/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/prompt-separation/requirements.md -------------------------------------------------------------------------------- /.claude/specs/prompt-separation/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/specs/prompt-separation/tasks.md -------------------------------------------------------------------------------- /.claude/system-prompts/spec-workflow-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.claude/system-prompts/spec-workflow-starter.md -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/icon.png -------------------------------------------------------------------------------- /icons/kiro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/icons/kiro.svg -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/jest.config.js -------------------------------------------------------------------------------- /media/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/media/image.png -------------------------------------------------------------------------------- /media/permission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/media/permission.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/screenshots/image.png -------------------------------------------------------------------------------- /screenshots/new-spec-with-agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/screenshots/new-spec-with-agents.png -------------------------------------------------------------------------------- /scripts/build-prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/scripts/build-prompts.js -------------------------------------------------------------------------------- /scripts/watch-prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/scripts/watch-prompts.js -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/features/agents/agentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/agents/agentManager.ts -------------------------------------------------------------------------------- /src/features/permission/configReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/permission/configReader.ts -------------------------------------------------------------------------------- /src/features/permission/permissionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/permission/permissionCache.ts -------------------------------------------------------------------------------- /src/features/permission/permissionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/permission/permissionManager.ts -------------------------------------------------------------------------------- /src/features/permission/permissionWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/permission/permissionWebview.ts -------------------------------------------------------------------------------- /src/features/spec/specManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/spec/specManager.ts -------------------------------------------------------------------------------- /src/features/steering/steeringManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/features/steering/steeringManager.ts -------------------------------------------------------------------------------- /src/prompts/spec/create-spec-with-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/spec/create-spec-with-agents.md -------------------------------------------------------------------------------- /src/prompts/spec/create-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/spec/create-spec.md -------------------------------------------------------------------------------- /src/prompts/spec/impl-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/spec/impl-task.md -------------------------------------------------------------------------------- /src/prompts/steering/create-custom-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/steering/create-custom-steering.md -------------------------------------------------------------------------------- /src/prompts/steering/delete-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/steering/delete-steering.md -------------------------------------------------------------------------------- /src/prompts/steering/init-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/steering/init-steering.md -------------------------------------------------------------------------------- /src/prompts/steering/refine-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/steering/refine-steering.md -------------------------------------------------------------------------------- /src/prompts/target/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/index.ts -------------------------------------------------------------------------------- /src/prompts/target/spec/create-spec-with-agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/spec/create-spec-with-agents.ts -------------------------------------------------------------------------------- /src/prompts/target/spec/create-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/spec/create-spec.ts -------------------------------------------------------------------------------- /src/prompts/target/spec/impl-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/spec/impl-task.ts -------------------------------------------------------------------------------- /src/prompts/target/steering/create-custom-steering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/steering/create-custom-steering.ts -------------------------------------------------------------------------------- /src/prompts/target/steering/delete-steering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/steering/delete-steering.ts -------------------------------------------------------------------------------- /src/prompts/target/steering/init-steering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/steering/init-steering.ts -------------------------------------------------------------------------------- /src/prompts/target/steering/refine-steering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/prompts/target/steering/refine-steering.ts -------------------------------------------------------------------------------- /src/providers/agentsExplorerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/agentsExplorerProvider.ts -------------------------------------------------------------------------------- /src/providers/claudeCodeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/claudeCodeProvider.ts -------------------------------------------------------------------------------- /src/providers/hooksExplorerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/hooksExplorerProvider.ts -------------------------------------------------------------------------------- /src/providers/mcpExplorerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/mcpExplorerProvider.ts -------------------------------------------------------------------------------- /src/providers/overviewProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/overviewProvider.ts -------------------------------------------------------------------------------- /src/providers/specExplorerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/specExplorerProvider.ts -------------------------------------------------------------------------------- /src/providers/specTaskCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/specTaskCodeLensProvider.ts -------------------------------------------------------------------------------- /src/providers/steeringExplorerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/providers/steeringExplorerProvider.ts -------------------------------------------------------------------------------- /src/resources/agents/spec-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-design.md -------------------------------------------------------------------------------- /src/resources/agents/spec-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-impl.md -------------------------------------------------------------------------------- /src/resources/agents/spec-judge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-judge.md -------------------------------------------------------------------------------- /src/resources/agents/spec-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-requirements.md -------------------------------------------------------------------------------- /src/resources/agents/spec-system-prompt-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-system-prompt-loader.md -------------------------------------------------------------------------------- /src/resources/agents/spec-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-tasks.md -------------------------------------------------------------------------------- /src/resources/agents/spec-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/agents/spec-test.md -------------------------------------------------------------------------------- /src/resources/prompts/spec-workflow-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/resources/prompts/spec-workflow-starter.md -------------------------------------------------------------------------------- /src/services/promptLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/services/promptLoader.ts -------------------------------------------------------------------------------- /src/types/prompt.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/types/prompt.types.ts -------------------------------------------------------------------------------- /src/utils/configManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/utils/configManager.ts -------------------------------------------------------------------------------- /src/utils/notificationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/utils/notificationUtils.ts -------------------------------------------------------------------------------- /src/utils/updateChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/src/utils/updateChecker.ts -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__mocks__/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/__mocks__/vscode.ts -------------------------------------------------------------------------------- /tests/e2e/diff/create-custom-steering-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/create-custom-steering-diff.md -------------------------------------------------------------------------------- /tests/e2e/diff/create-spec-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/create-spec-diff.md -------------------------------------------------------------------------------- /tests/e2e/diff/init-steering-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/init-steering-diff.md -------------------------------------------------------------------------------- /tests/e2e/diff/refine-0.1.9-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/refine-0.1.9-test.md -------------------------------------------------------------------------------- /tests/e2e/diff/refine-steering-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/refine-steering-diff.md -------------------------------------------------------------------------------- /tests/e2e/diff/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/diff/report.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.8/create-custom-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.8/create-custom-steering.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.8/create-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.8/create-spec.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.8/init-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.8/init-steering.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.8/refine-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.8/refine-steering.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.9/create-custom-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.9/create-custom-steering.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.9/create-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.9/create-spec.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.9/init-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.9/init-steering.md -------------------------------------------------------------------------------- /tests/e2e/prompt-0.1.9/refine-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/e2e/prompt-0.1.9/refine-steering.md -------------------------------------------------------------------------------- /tests/integration/__snapshots__/promptSnapshots.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/__snapshots__/promptSnapshots.test.ts.snap -------------------------------------------------------------------------------- /tests/integration/permission/permissionSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/permission/permissionSystem.md -------------------------------------------------------------------------------- /tests/integration/permission/permissionSystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/permission/permissionSystem.test.ts -------------------------------------------------------------------------------- /tests/integration/permission/permissionSystemReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/permission/permissionSystemReport.md -------------------------------------------------------------------------------- /tests/integration/promptSnapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/promptSnapshots.md -------------------------------------------------------------------------------- /tests/integration/promptSnapshots.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/promptSnapshots.test.ts -------------------------------------------------------------------------------- /tests/integration/prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/prompts.md -------------------------------------------------------------------------------- /tests/integration/prompts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/integration/prompts.test.ts -------------------------------------------------------------------------------- /tests/unit/features/agents/agentManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/agents/agentManager.md -------------------------------------------------------------------------------- /tests/unit/features/agents/agentManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/agents/agentManager.test.ts -------------------------------------------------------------------------------- /tests/unit/features/permission/configReader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/configReader.md -------------------------------------------------------------------------------- /tests/unit/features/permission/configReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/configReader.test.ts -------------------------------------------------------------------------------- /tests/unit/features/permission/permissionCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/permissionCache.md -------------------------------------------------------------------------------- /tests/unit/features/permission/permissionCache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/permissionCache.test.ts -------------------------------------------------------------------------------- /tests/unit/features/permission/permissionManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/permissionManager.md -------------------------------------------------------------------------------- /tests/unit/features/permission/permissionManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/features/permission/permissionManager.test.ts -------------------------------------------------------------------------------- /tests/unit/prompts/markdownParsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/prompts/markdownParsing.md -------------------------------------------------------------------------------- /tests/unit/prompts/markdownParsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/prompts/markdownParsing.test.ts -------------------------------------------------------------------------------- /tests/unit/providers/agentsExplorerProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/providers/agentsExplorerProvider.md -------------------------------------------------------------------------------- /tests/unit/providers/agentsExplorerProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/providers/agentsExplorerProvider.test.ts -------------------------------------------------------------------------------- /tests/unit/services/promptLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/services/promptLoader.md -------------------------------------------------------------------------------- /tests/unit/services/promptLoader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/services/promptLoader.test.ts -------------------------------------------------------------------------------- /tests/unit/utils/updateChecker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/utils/updateChecker.md -------------------------------------------------------------------------------- /tests/unit/utils/updateChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tests/unit/utils/updateChecker.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notdp/kiro-for-cc/HEAD/webpack.config.js --------------------------------------------------------------------------------