@shepai/cli 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +168 -22
- package/dist/src/application/ports/output/{agent-executor-factory.interface.d.ts → agents/agent-executor-factory.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/agents/agent-executor-factory.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{agent-executor.interface.d.ts → agents/agent-executor.interface.d.ts} +3 -1
- package/dist/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{agent-registry.interface.d.ts → agents/agent-registry.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/agents/agent-registry.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{agent-run-repository.interface.d.ts → agents/agent-run-repository.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/agents/agent-run-repository.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{agent-runner.interface.d.ts → agents/agent-runner.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/agents/agent-runner.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{agent-validator.interface.d.ts → agents/agent-validator.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/agents/agent-validator.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/agents/index.d.ts +13 -0
- package/dist/src/application/ports/output/agents/index.d.ts.map +1 -0
- package/dist/src/application/ports/output/agents/index.js +6 -0
- package/dist/src/application/ports/output/index.d.ts +8 -14
- package/dist/src/application/ports/output/index.d.ts.map +1 -1
- package/dist/src/application/ports/output/index.js +5 -3
- package/dist/src/application/ports/output/{feature-repository.interface.d.ts → repositories/feature-repository.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/repositories/index.d.ts +8 -0
- package/dist/src/application/ports/output/repositories/index.d.ts.map +1 -0
- package/dist/src/application/ports/output/repositories/index.js +6 -0
- package/dist/src/application/ports/output/{settings.repository.interface.d.ts → repositories/settings.repository.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/repositories/settings.repository.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/services/external-issue-fetcher.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/services/index.d.ts +13 -0
- package/dist/src/application/ports/output/services/index.d.ts.map +1 -0
- package/dist/src/application/ports/output/services/index.js +7 -0
- package/dist/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/{version-service.interface.d.ts → services/version-service.interface.d.ts} +1 -1
- package/dist/src/application/ports/output/services/version-service.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/services/web-server-service.interface.d.ts.map +1 -0
- package/dist/src/application/ports/output/services/worktree-service.interface.d.ts.map +1 -0
- package/dist/src/application/use-cases/agents/approve-agent-run.use-case.d.ts +4 -4
- package/dist/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/configure-agent.use-case.d.ts +2 -2
- package/dist/src/application/use-cases/agents/configure-agent.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/delete-agent-run.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/delete-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/get-agent-run.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/get-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/list-agent-runs.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/list-agent-runs.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/reject-agent-run.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/run-agent.use-case.d.ts +2 -2
- package/dist/src/application/use-cases/agents/run-agent.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/show-agent-run.use-case.d.ts +2 -2
- package/dist/src/application/use-cases/agents/show-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/stop-agent-run.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/stop-agent-run.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/agents/validate-agent-auth.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/agents/validate-agent-auth.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/features/create-feature.use-case.d.ts +6 -6
- package/dist/src/application/use-cases/features/create-feature.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/features/create-feature.use-case.js +1 -0
- package/dist/src/application/use-cases/features/delete-feature.use-case.d.ts +4 -4
- package/dist/src/application/use-cases/features/delete-feature.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/features/list-features.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/features/list-features.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/features/resume-feature.use-case.d.ts +4 -4
- package/dist/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/features/show-feature.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/features/show-feature.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/settings/initialize-settings.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/settings/initialize-settings.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/settings/load-settings.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/settings/load-settings.use-case.d.ts.map +1 -1
- package/dist/src/application/use-cases/settings/update-settings.use-case.d.ts +1 -1
- package/dist/src/application/use-cases/settings/update-settings.use-case.d.ts.map +1 -1
- package/dist/src/infrastructure/repositories/agent-run.repository.d.ts +1 -1
- package/dist/src/infrastructure/repositories/agent-run.repository.d.ts.map +1 -1
- package/dist/src/infrastructure/repositories/sqlite-feature.repository.d.ts +1 -1
- package/dist/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
- package/dist/src/infrastructure/repositories/sqlite-settings.repository.d.ts +1 -1
- package/dist/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts +2 -2
- package/dist/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-registry.service.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-registry.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-runner.service.d.ts +4 -4
- package/dist/src/infrastructure/services/agents/common/agent-runner.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-validator.service.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/common/agent-validator.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +3 -1
- package/dist/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +5 -0
- package/dist/src/infrastructure/services/agents/common/executors/mock-executor-factory.service.d.ts +2 -2
- package/dist/src/infrastructure/services/agents/common/executors/mock-executor-factory.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/common/executors/mock-executor.service.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/common/executors/mock-executor.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +2 -2
- package/dist/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/heartbeat.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/heartbeat.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/analyze.node.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/analyze.node.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/implement.node.d.ts +8 -7
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/implement.node.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/implement.node.js +140 -16
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/plan.node.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/plan.node.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.d.ts +44 -4
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.js +86 -14
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/requirements.node.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/requirements.node.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/research.node.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/feature-agent/nodes/research.node.d.ts.map +1 -1
- package/dist/src/infrastructure/services/agents/streaming/streaming-executor-proxy.d.ts +1 -1
- package/dist/src/infrastructure/services/agents/streaming/streaming-executor-proxy.d.ts.map +1 -1
- package/dist/src/infrastructure/services/external/github-issue.service.d.ts +1 -1
- package/dist/src/infrastructure/services/external/github-issue.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/external/github-issue.service.js +1 -1
- package/dist/src/infrastructure/services/external/jira-ticket.service.d.ts +1 -1
- package/dist/src/infrastructure/services/external/jira-ticket.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/external/jira-ticket.service.js +1 -1
- package/dist/src/infrastructure/services/git/worktree.service.d.ts +1 -1
- package/dist/src/infrastructure/services/git/worktree.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/git/worktree.service.js +1 -1
- package/dist/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
- package/dist/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
- package/dist/src/infrastructure/services/web-server.service.d.ts +1 -1
- package/dist/src/infrastructure/services/web-server.service.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +3 -3
- package/dist/src/presentation/cli/ui/index.d.ts +1 -0
- package/dist/src/presentation/cli/ui/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/ui/index.js +1 -0
- package/dist/src/presentation/cli/ui/spinner.d.ts +21 -0
- package/dist/src/presentation/cli/ui/spinner.d.ts.map +1 -0
- package/dist/src/presentation/cli/ui/spinner.js +45 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/cache/.previewinfo +1 -1
- package/web/.next/cache/.rscinfo +1 -1
- package/web/.next/cache/config.json +3 -3
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +1 -1
- package/web/.next/required-server-files.json +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.html +2 -2
- package/web/.next/server/app/_not-found.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/web/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/index.html +2 -2
- package/web/.next/server/app/index.rsc +1 -1
- package/web/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/index.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/index.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/index.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/version.html +2 -2
- package/web/.next/server/app/version.rsc +1 -1
- package/web/.next/server/app/version.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/version.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/version.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/version.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/version.segments/version/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/version.segments/version.segment.rsc +1 -1
- package/web/.next/server/chunks/ssr/_19be0743._.js +1 -1
- package/web/.next/server/pages/404.html +2 -2
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +1 -1
- package/web/.next/trace +1 -1
- package/web/.next/trace-build +1 -1
- package/dist/src/application/ports/output/agent-executor-factory.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/agent-executor.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/agent-registry.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/agent-run-repository.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/agent-runner.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/agent-validator.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/external-issue-fetcher.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/feature-agent-process.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/feature-repository.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/settings.repository.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/spec-initializer.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/version-service.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/web-server-service.interface.d.ts.map +0 -1
- package/dist/src/application/ports/output/worktree-service.interface.d.ts.map +0 -1
- /package/dist/src/application/ports/output/{agent-executor-factory.interface.js → agents/agent-executor-factory.interface.js} +0 -0
- /package/dist/src/application/ports/output/{agent-executor.interface.js → agents/agent-executor.interface.js} +0 -0
- /package/dist/src/application/ports/output/{agent-registry.interface.js → agents/agent-registry.interface.js} +0 -0
- /package/dist/src/application/ports/output/{agent-run-repository.interface.js → agents/agent-run-repository.interface.js} +0 -0
- /package/dist/src/application/ports/output/{agent-runner.interface.js → agents/agent-runner.interface.js} +0 -0
- /package/dist/src/application/ports/output/{agent-validator.interface.js → agents/agent-validator.interface.js} +0 -0
- /package/dist/src/application/ports/output/{feature-agent-process.interface.d.ts → agents/feature-agent-process.interface.d.ts} +0 -0
- /package/dist/src/application/ports/output/{feature-agent-process.interface.js → agents/feature-agent-process.interface.js} +0 -0
- /package/dist/src/application/ports/output/{feature-repository.interface.js → repositories/feature-repository.interface.js} +0 -0
- /package/dist/src/application/ports/output/{settings.repository.interface.js → repositories/settings.repository.interface.js} +0 -0
- /package/dist/src/application/ports/output/{external-issue-fetcher.interface.d.ts → services/external-issue-fetcher.interface.d.ts} +0 -0
- /package/dist/src/application/ports/output/{external-issue-fetcher.interface.js → services/external-issue-fetcher.interface.js} +0 -0
- /package/dist/src/application/ports/output/{spec-initializer.interface.d.ts → services/spec-initializer.interface.d.ts} +0 -0
- /package/dist/src/application/ports/output/{spec-initializer.interface.js → services/spec-initializer.interface.js} +0 -0
- /package/dist/src/application/ports/output/{version-service.interface.js → services/version-service.interface.js} +0 -0
- /package/dist/src/application/ports/output/{web-server-service.interface.d.ts → services/web-server-service.interface.d.ts} +0 -0
- /package/dist/src/application/ports/output/{web-server-service.interface.js → services/web-server-service.interface.js} +0 -0
- /package/dist/src/application/ports/output/{worktree-service.interface.d.ts → services/worktree-service.interface.d.ts} +0 -0
- /package/dist/src/application/ports/output/{worktree-service.interface.js → services/worktree-service.interface.js} +0 -0
- /package/web/.next/static/{XV-wYY85Xk9ANCuQDQ6_H → KqMr5DLdrvbaA-agLuHP1}/_buildManifest.js +0 -0
- /package/web/.next/static/{XV-wYY85Xk9ANCuQDQ6_H → KqMr5DLdrvbaA-agLuHP1}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{XV-wYY85Xk9ANCuQDQ6_H → KqMr5DLdrvbaA-agLuHP1}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -23,27 +23,183 @@ _Manage Claude Code, Cursor CLI, or any coding agent across the full development
|
|
|
23
23
|
|
|
24
24
|
<img src="docs/poc/imgs/00-control-center-hero.png" alt="Shep AI Control Center — manage all features across repos from a single canvas" width="100%" />
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
[](https://shep-ai.github.io/cli/poc/)
|
|
27
27
|
|
|
28
28
|
</div>
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
Running AI agents is easy. **Managing many of them through a full SDLC is the hard part.** Shep gives you a control center that handles the entire lifecycle — requirements gathering, planning, implementation, QA, and deployment — across multiple agent sessions running in parallel. See what each agent is doing, jump into any session's web preview, code editor, or terminal, approve plans when agents need your input, and let them keep working while you move on. Plug in Claude Code, Cursor CLI, Gemini CLI, or any coding agent. Each feature gets its own isolated worktree and dev environment. You manage the lifecycle, agents do the work.
|
|
30
|
+
### Install
|
|
33
31
|
|
|
34
32
|
```bash
|
|
35
33
|
npm i -g @shepai/cli
|
|
36
|
-
cd your-repo/
|
|
37
|
-
shep feat new "Implement SSO with SAML 2.0"
|
|
38
|
-
# Agent starts working in a dedicated worktree.
|
|
39
|
-
# Open the control center to watch progress, intervene, or switch context.
|
|
40
|
-
shep ui
|
|
41
34
|
```
|
|
42
35
|
|
|
36
|
+
### Try it
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
cd your-project/
|
|
40
|
+
shep feat new "Add unit tests for all source files"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
<details>
|
|
44
|
+
<summary><b>List features</b> — <code>shep feat ls</code></summary>
|
|
45
|
+
<br />
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
Features for /home/user/projects/my-app
|
|
49
|
+
|
|
50
|
+
ID Name Status Branch Created
|
|
51
|
+
1b0a7969 Add Unit Tests ✓ Completed feat/add-unit-tests 2/13/2026
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
</details>
|
|
55
|
+
|
|
56
|
+
<details>
|
|
57
|
+
<summary><b>Show feature detail</b> — <code>shep feat show 1b0a7969</code></summary>
|
|
58
|
+
<br />
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
Feature: Add Unit Tests
|
|
62
|
+
|
|
63
|
+
ID 1b0a7969-b420-4754-832f-5c38801b4852
|
|
64
|
+
Slug add-unit-tests
|
|
65
|
+
Description Add comprehensive unit tests for all existing source files
|
|
66
|
+
in the project to ensure code correctness and improve test coverage.
|
|
67
|
+
Repository /home/user/projects/my-app
|
|
68
|
+
Branch feat/add-unit-tests
|
|
69
|
+
Status ✓ Completed
|
|
70
|
+
Worktree ~/.shep/repos/9bbd30de/wt/feat-add-unit-tests
|
|
71
|
+
Spec Dir ~/.shep/repos/9bbd30de/wt/feat-add-unit-tests/specs/001-add-unit-tests
|
|
72
|
+
Agent Run 732a1fc2-a346-4052-a028-dcb1a46b6f2c
|
|
73
|
+
|
|
74
|
+
Timestamps
|
|
75
|
+
Created 2/13/2026, 12:15:08 AM
|
|
76
|
+
Updated 2/13/2026, 12:15:08 AM
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
</details>
|
|
80
|
+
|
|
81
|
+
<details>
|
|
82
|
+
<summary><b>Isolated worktree per feature</b> — no stashing, no branch switching</summary>
|
|
83
|
+
<br />
|
|
84
|
+
|
|
85
|
+
Each feature gets its own git worktree — fully isolated from your main branch.
|
|
86
|
+
|
|
87
|
+
```
|
|
88
|
+
~/.shep/repos/9bbd30de/wt/feat-add-unit-tests/
|
|
89
|
+
├── .git # linked worktree (not a clone)
|
|
90
|
+
├── src/
|
|
91
|
+
├── tests/
|
|
92
|
+
├── specs/
|
|
93
|
+
│ └── 001-add-unit-tests/
|
|
94
|
+
│ ├── feature.yaml # status tracking
|
|
95
|
+
│ ├── spec.yaml # requirements & scope
|
|
96
|
+
│ ├── research.yaml # technical decisions
|
|
97
|
+
│ ├── plan.yaml # implementation strategy
|
|
98
|
+
│ └── tasks.yaml # task breakdown
|
|
99
|
+
├── pyproject.toml
|
|
100
|
+
└── README.md
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
</details>
|
|
104
|
+
|
|
105
|
+
<details>
|
|
106
|
+
<summary><b>Auto-generated spec files</b> — real output from a single <code>shep feat new</code></summary>
|
|
107
|
+
<br />
|
|
108
|
+
|
|
109
|
+
> **`spec.yaml`** — requirements & scope
|
|
110
|
+
|
|
111
|
+
```yaml
|
|
112
|
+
name: add-unit-tests
|
|
113
|
+
oneLiner: Add comprehensive unit tests for all source modules
|
|
114
|
+
summary: >
|
|
115
|
+
Add unit tests for every module in the package. The project currently has
|
|
116
|
+
minimal test coverage (only 7 tests total). This feature adds tests for
|
|
117
|
+
config, agents, flows, tools, observability, and CLI — using pytest with
|
|
118
|
+
mocking to avoid external dependencies.
|
|
119
|
+
sizeEstimate: M
|
|
120
|
+
openQuestions:
|
|
121
|
+
- question: 'Should we set a minimum coverage threshold and enforce it in CI?'
|
|
122
|
+
resolved: true
|
|
123
|
+
answer: >
|
|
124
|
+
Set 70% minimum via --cov-fail-under=70. Achievable and prevents regression.
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
> **`research.yaml`** — technical decisions with rationale
|
|
128
|
+
|
|
129
|
+
```yaml
|
|
130
|
+
decisions:
|
|
131
|
+
- title: 'Test Framework'
|
|
132
|
+
chosen: 'pytest (already configured)'
|
|
133
|
+
rejected:
|
|
134
|
+
- 'unittest — More verbose, no fixture system'
|
|
135
|
+
- 'nose2 — Unmaintained, no advantage'
|
|
136
|
+
rationale: >
|
|
137
|
+
Already a dev dependency with asyncio and coverage plugins configured.
|
|
138
|
+
|
|
139
|
+
- title: 'Mocking Library'
|
|
140
|
+
chosen: 'unittest.mock (stdlib)'
|
|
141
|
+
rejected:
|
|
142
|
+
- 'pytest-mock — Adds a dependency for marginal convenience'
|
|
143
|
+
rationale: >
|
|
144
|
+
patch() for module-level replacement, MagicMock for spec objects,
|
|
145
|
+
assert_called_with for verification. No new dependency needed.
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
> **`tasks.yaml`** — TDD task breakdown
|
|
149
|
+
|
|
150
|
+
```yaml
|
|
151
|
+
tasks:
|
|
152
|
+
- id: task-1
|
|
153
|
+
title: 'Create conftest.py with shared fixtures'
|
|
154
|
+
dependencies: []
|
|
155
|
+
acceptanceCriteria:
|
|
156
|
+
- 'mock_settings returns a Settings instance with known values'
|
|
157
|
+
- 'mock_llm returns MagicMock(spec=LLM) for agent tests'
|
|
158
|
+
- 'tmp_repo creates a temp dir with git init and one commit'
|
|
159
|
+
tdd:
|
|
160
|
+
red: ['Write test_smoke.py that imports fixtures and asserts properties']
|
|
161
|
+
green: ['Implement conftest.py with all three fixtures']
|
|
162
|
+
refactor: ['Remove smoke test — subsumed by real test files']
|
|
163
|
+
|
|
164
|
+
- id: task-3
|
|
165
|
+
title: 'Test config/llm.py'
|
|
166
|
+
dependencies: [task-1]
|
|
167
|
+
acceptanceCriteria:
|
|
168
|
+
- 'test_create_llm_with_openai_provider: verifies model, temperature, api_key'
|
|
169
|
+
- 'test_create_llm_with_cursor_provider: verifies base_url included'
|
|
170
|
+
- 'test_get_fast_llm: calls create_llm with settings.fast_model'
|
|
171
|
+
tdd:
|
|
172
|
+
red: ['Patch LLM and get_settings, assert constructor kwargs']
|
|
173
|
+
green: ['Tests pass — they verify existing code with mocks']
|
|
174
|
+
refactor: ['Extract common patch decorators if repetitive']
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
> **`feature.yaml`** — machine-readable progress (updated continuously)
|
|
178
|
+
|
|
179
|
+
```yaml
|
|
180
|
+
feature:
|
|
181
|
+
id: '001-add-unit-tests'
|
|
182
|
+
branch: 'feat/001-add-unit-tests'
|
|
183
|
+
lifecycle: 'research'
|
|
184
|
+
|
|
185
|
+
status:
|
|
186
|
+
phase: 'research'
|
|
187
|
+
progress: { completed: 0, total: 12, percentage: 0 }
|
|
188
|
+
lastUpdatedBy: 'feature-agent'
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
</details>
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
Running AI agents is easy. **Managing many of them through a full SDLC is the hard part.** Shep gives you a control center that handles the entire lifecycle — requirements gathering, planning, implementation, QA, and deployment — across multiple agent sessions running in parallel. See what each agent is doing, jump into any session's web preview, code editor, or terminal, approve plans when agents need your input, and let them keep working while you move on. Plug in Claude Code, Cursor CLI, Gemini CLI, or any coding agent. Each feature gets its own isolated worktree and dev environment. You manage the lifecycle, agents do the work.
|
|
196
|
+
|
|
43
197
|
---
|
|
44
198
|
|
|
45
199
|
## Features
|
|
46
200
|
|
|
201
|
+
> 🚧 **Under active development** — Web UI screenshots are from the design spec. Core CLI (`feat new`, `feat ls`, `feat show`, `settings`, `ui`) works today. Some commands (`mem`, `start`) are still WIP.
|
|
202
|
+
|
|
47
203
|
<table>
|
|
48
204
|
<tr>
|
|
49
205
|
<td width="55%"><img src="docs/poc/imgs/01-features-control-center-overview.png" alt="Feature properties with attachments and metadata" /></td>
|
|
@@ -182,21 +338,11 @@ shep ui
|
|
|
182
338
|
## Quick Start
|
|
183
339
|
|
|
184
340
|
```bash
|
|
185
|
-
#
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
# Start the background service
|
|
189
|
-
shep start
|
|
190
|
-
# ➜ Local: http://localhost:5173/
|
|
191
|
-
# Shep service is running in background, have fun!
|
|
192
|
-
|
|
193
|
-
# Navigate to any repo
|
|
194
|
-
cd ~/repos/your-project
|
|
195
|
-
|
|
196
|
-
# Create your first feature
|
|
341
|
+
# Navigate to any repo and create a feature
|
|
342
|
+
cd ~/projects/your-app
|
|
197
343
|
shep feat new "Add user authentication with OAuth 2.0"
|
|
198
344
|
|
|
199
|
-
# Open the control center
|
|
345
|
+
# Open the control center to watch progress
|
|
200
346
|
shep ui
|
|
201
347
|
```
|
|
202
348
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* const executor = factory.createExecutor(AgentType.ClaudeCode, settings.agent);
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
import type { AgentType, AgentConfig } from '
|
|
19
|
+
import type { AgentType, AgentConfig } from '../../../../domain/generated/output.js';
|
|
20
20
|
import type { IAgentExecutor } from './agent-executor.interface.js';
|
|
21
21
|
/**
|
|
22
22
|
* Port interface for creating agent executor instances.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-executor-factory.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-executor-factory.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AACrF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAEpE;;;;;;;GAOG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;;;OAMG;IACH,cAAc,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,GAAG,cAAc,CAAC;IAE9E;;;;OAIG;IACH,kBAAkB,IAAI,SAAS,EAAE,CAAC;CACnC"}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* }
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
import type { AgentType, AgentFeature } from '
|
|
23
|
+
import type { AgentType, AgentFeature } from '../../../../domain/generated/output.js';
|
|
24
24
|
/**
|
|
25
25
|
* Result returned after an agent execution completes.
|
|
26
26
|
*/
|
|
@@ -68,6 +68,8 @@ export interface AgentExecutionOptions {
|
|
|
68
68
|
outputSchema?: object;
|
|
69
69
|
/** Execution timeout in milliseconds */
|
|
70
70
|
timeout?: number;
|
|
71
|
+
/** Suppress executor debug logging (e.g. for quick foreground calls) */
|
|
72
|
+
silent?: boolean;
|
|
71
73
|
}
|
|
72
74
|
/**
|
|
73
75
|
* Port interface for executing prompts against an AI agent.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-executor.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-executor.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AAEtF;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,8BAA8B;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6BAA6B;IAC7B,KAAK,CAAC,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,CAAC;IACtD,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,2DAA2D;IAC3D,IAAI,EAAE,UAAU,GAAG,QAAQ,GAAG,OAAO,CAAC;IACtC,yBAAyB;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,iCAAiC;IACjC,SAAS,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,sCAAsC;IACtC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,wCAAwC;IACxC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,mDAAmD;IACnD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wCAAwC;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,WAAW,cAAc;IAC7B,8CAA8C;IAC9C,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC;IAE9B;;;;;;OAMG;IACH,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAExF;;;;;;OAMG;IACH,aAAa,CACX,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,qBAAqB,GAC9B,aAAa,CAAC,yBAAyB,CAAC,CAAC;IAE5C;;;;;OAKG;IACH,eAAe,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC;CACjD"}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
* const agents = registry.list();
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
|
-
import type { AgentDefinition } from '
|
|
33
|
+
import type { AgentDefinition } from '../../../../domain/generated/output.js';
|
|
34
34
|
/**
|
|
35
35
|
* Extended agent definition that includes a graph factory function.
|
|
36
36
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-registry.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-registry.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAC;AAE9E;;;;;;;GAOG;AACH,MAAM,WAAW,0BAA2B,SAAQ,eAAe;IACjE,4EAA4E;IAE5E,YAAY,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;CACvC;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,0BAA0B,GAAG,IAAI,CAAC;IAEvD;;;;;OAKG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,0BAA0B,GAAG,SAAS,CAAC;IAE1D;;;;OAIG;IACH,IAAI,IAAI,0BAA0B,EAAE,CAAC;CACtC"}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Domain and Application layers depend on this interface
|
|
9
9
|
* - Infrastructure layer provides concrete implementations
|
|
10
10
|
*/
|
|
11
|
-
import type { AgentRun, AgentRunStatus } from '
|
|
11
|
+
import type { AgentRun, AgentRunStatus } from '../../../../domain/generated/output.js';
|
|
12
12
|
/**
|
|
13
13
|
* Repository interface for AgentRun entity persistence.
|
|
14
14
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-run-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-run-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAEvF;;;;;;;GAOG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1C;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE3D;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7F;;;;;;OAMG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAEnD;;;;OAIG;IACH,IAAI,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnC"}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* console.log(run.status); // 'running' | 'completed' | 'failed'
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
import type { AgentRun, AgentRunEvent } from '
|
|
23
|
+
import type { AgentRun, AgentRunEvent } from '../../../../domain/generated/output.js';
|
|
24
24
|
/**
|
|
25
25
|
* Options for controlling agent run behavior.
|
|
26
26
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-runner.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-runner.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AAEtF;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,wDAAwD;IACxD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gCAAgC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oDAAoD;IACpD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iDAAiD;IACjD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,WAAW,YAAY;IAC3B;;;;;;;OAOG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;IAE1F;;;;;;;OAOG;IACH,cAAc,CACZ,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,eAAe,GACxB,aAAa,CAAC,aAAa,CAAC,CAAC;CACjC"}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Domain and Application layers depend on this interface
|
|
9
9
|
* - Infrastructure layer provides concrete implementations
|
|
10
10
|
*/
|
|
11
|
-
import type { AgentType } from '
|
|
11
|
+
import type { AgentType } from '../../../../domain/generated/output.js';
|
|
12
12
|
/**
|
|
13
13
|
* Result of an agent availability check.
|
|
14
14
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-validator.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/agent-validator.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AAExE;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,SAAS,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,eAAe;IAC9B;;;;;OAKG;IACH,WAAW,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACnE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-agent-process.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/feature-agent-process.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C;;;;;;;;OAQG;IACH,KAAK,CACH,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM,EACf,YAAY,CAAC,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,GACpD,MAAM,CAAC;IAEV;;;;;OAKG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IAE9B;;;;;OAKG;IACH,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Output Ports
|
|
3
|
+
*
|
|
4
|
+
* Interfaces for agent execution, orchestration, and persistence.
|
|
5
|
+
*/
|
|
6
|
+
export type { IAgentExecutor, AgentExecutionResult, AgentExecutionStreamEvent, AgentExecutionOptions, } from './agent-executor.interface.js';
|
|
7
|
+
export type { IAgentExecutorFactory } from './agent-executor-factory.interface.js';
|
|
8
|
+
export type { IAgentRegistry, AgentDefinitionWithFactory } from './agent-registry.interface.js';
|
|
9
|
+
export type { IAgentRunner, AgentRunOptions } from './agent-runner.interface.js';
|
|
10
|
+
export type { IAgentRunRepository } from './agent-run-repository.interface.js';
|
|
11
|
+
export type { IAgentValidator, AgentValidationResult } from './agent-validator.interface.js';
|
|
12
|
+
export type { IFeatureAgentProcessService } from './feature-agent-process.interface.js';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/agents/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EACV,cAAc,EACd,oBAAoB,EACpB,yBAAyB,EACzB,qBAAqB,GACtB,MAAM,+BAA+B,CAAC;AACvC,YAAY,EAAE,qBAAqB,EAAE,MAAM,uCAAuC,CAAC;AACnF,YAAY,EAAE,cAAc,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAChG,YAAY,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACjF,YAAY,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC/E,YAAY,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAC7F,YAAY,EAAE,2BAA2B,EAAE,MAAM,sCAAsC,CAAC"}
|
|
@@ -1,19 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Application Output Ports Module
|
|
3
3
|
*
|
|
4
|
-
* Exports
|
|
5
|
-
*
|
|
4
|
+
* Exports all output port interfaces organized by domain:
|
|
5
|
+
* - agents/ — Agent execution, orchestration, and persistence
|
|
6
|
+
* - repositories/ — Data access and persistence
|
|
7
|
+
* - services/ — External services and integrations
|
|
6
8
|
*/
|
|
7
|
-
export type {
|
|
8
|
-
export type {
|
|
9
|
-
export type { IVersionService } from './
|
|
10
|
-
export
|
|
11
|
-
export type { IAgentExecutor, AgentExecutionResult, AgentExecutionStreamEvent, AgentExecutionOptions, } from './agent-executor.interface.js';
|
|
12
|
-
export type { IAgentExecutorFactory } from './agent-executor-factory.interface.js';
|
|
13
|
-
export type { IAgentRunner, AgentRunOptions } from './agent-runner.interface.js';
|
|
14
|
-
export type { IAgentRegistry, AgentDefinitionWithFactory } from './agent-registry.interface.js';
|
|
15
|
-
export type { IAgentRunRepository } from './agent-run-repository.interface.js';
|
|
16
|
-
export type { IWorktreeService, WorktreeInfo } from './worktree-service.interface.js';
|
|
17
|
-
export { WorktreeError, WorktreeErrorCode } from './worktree-service.interface.js';
|
|
18
|
-
export type { IFeatureAgentProcessService } from './feature-agent-process.interface.js';
|
|
9
|
+
export type { IAgentExecutor, AgentExecutionResult, AgentExecutionStreamEvent, AgentExecutionOptions, IAgentExecutorFactory, IAgentRegistry, AgentDefinitionWithFactory, IAgentRunner, AgentRunOptions, IAgentRunRepository, IAgentValidator, AgentValidationResult, IFeatureAgentProcessService, } from './agents/index.js';
|
|
10
|
+
export type { IFeatureRepository, FeatureListFilters, ISettingsRepository, } from './repositories/index.js';
|
|
11
|
+
export type { IExternalIssueFetcher, ExternalIssue, ISpecInitializerService, SpecInitializerResult, IVersionService, IWebServerService, IWorktreeService, WorktreeInfo, } from './services/index.js';
|
|
12
|
+
export { IssueFetcherError, IssueNotFoundError, IssueAuthenticationError, IssueServiceUnavailableError, WorktreeError, WorktreeErrorCode, } from './services/index.js';
|
|
19
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/application/ports/output/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/application/ports/output/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,YAAY,EACV,cAAc,EACd,oBAAoB,EACpB,yBAAyB,EACzB,qBAAqB,EACrB,qBAAqB,EACrB,cAAc,EACd,0BAA0B,EAC1B,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,eAAe,EACf,qBAAqB,EACrB,2BAA2B,GAC5B,MAAM,mBAAmB,CAAC;AAG3B,YAAY,EACV,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAGjC,YAAY,EACV,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,qBAAqB,EACrB,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,YAAY,GACb,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,EAC5B,aAAa,EACb,iBAAiB,GAClB,MAAM,qBAAqB,CAAC"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Application Output Ports Module
|
|
3
3
|
*
|
|
4
|
-
* Exports
|
|
5
|
-
*
|
|
4
|
+
* Exports all output port interfaces organized by domain:
|
|
5
|
+
* - agents/ — Agent execution, orchestration, and persistence
|
|
6
|
+
* - repositories/ — Data access and persistence
|
|
7
|
+
* - services/ — External services and integrations
|
|
6
8
|
*/
|
|
7
|
-
export { WorktreeError, WorktreeErrorCode } from './
|
|
9
|
+
export { IssueFetcherError, IssueNotFoundError, IssueAuthenticationError, IssueServiceUnavailableError, WorktreeError, WorktreeErrorCode, } from './services/index.js';
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Domain and Application layers depend on this interface
|
|
9
9
|
* - Infrastructure layer provides concrete implementations
|
|
10
10
|
*/
|
|
11
|
-
import type { Feature, SdlcLifecycle } from '
|
|
11
|
+
import type { Feature, SdlcLifecycle } from '../../../../domain/generated/output.js';
|
|
12
12
|
/**
|
|
13
13
|
* Filters for listing features.
|
|
14
14
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/repositories/feature-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AAErF;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,aAAa,CAAC;CAC3B;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;IAE9C;;;;;OAKG;IACH,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;IAExD;;;;;;OAMG;IACH,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;IAE1E;;;;;OAKG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC;IAEvD;;;;OAIG;IACH,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Repository Output Ports
|
|
3
|
+
*
|
|
4
|
+
* Interfaces for data persistence operations.
|
|
5
|
+
*/
|
|
6
|
+
export type { IFeatureRepository, FeatureListFilters } from './feature-repository.interface.js';
|
|
7
|
+
export type { ISettingsRepository } from './settings.repository.interface.js';
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/repositories/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAChG,YAAY,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC"}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Domain and Application layers depend on this interface
|
|
9
9
|
* - Infrastructure layer provides concrete implementations
|
|
10
10
|
*/
|
|
11
|
-
import type { Settings } from '
|
|
11
|
+
import type { Settings } from '../../../../domain/generated/output.js';
|
|
12
12
|
/**
|
|
13
13
|
* Repository interface for Settings entity persistence.
|
|
14
14
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings.repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/repositories/settings.repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAEvE;;;;;;;GAOG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;;;;OAMG;IACH,UAAU,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9C;;;;OAIG;IACH,IAAI,IAAI,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAEjC;;;;;OAKG;IACH,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"external-issue-fetcher.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/external-issue-fetcher.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,QAAQ,GAAG,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;;;;;OAQG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IAEtD;;;;;;;OAOG;IACH,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CACtD;AAED;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,KAAK;gBAC9B,OAAO,EAAE,MAAM;CAI5B;AAED;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,iBAAiB;gBAC3C,OAAO,EAAE,MAAM;CAI5B;AAED;;GAEG;AACH,qBAAa,wBAAyB,SAAQ,iBAAiB;gBACjD,OAAO,EAAE,MAAM;CAI5B;AAED;;GAEG;AACH,qBAAa,4BAA6B,SAAQ,iBAAiB;gBACrD,OAAO,EAAE,MAAM;CAI5B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Service Output Ports
|
|
3
|
+
*
|
|
4
|
+
* Interfaces for external services and integrations.
|
|
5
|
+
*/
|
|
6
|
+
export type { IExternalIssueFetcher, ExternalIssue } from './external-issue-fetcher.interface.js';
|
|
7
|
+
export { IssueFetcherError, IssueNotFoundError, IssueAuthenticationError, IssueServiceUnavailableError, } from './external-issue-fetcher.interface.js';
|
|
8
|
+
export type { ISpecInitializerService, SpecInitializerResult, } from './spec-initializer.interface.js';
|
|
9
|
+
export type { IVersionService } from './version-service.interface.js';
|
|
10
|
+
export type { IWebServerService } from './web-server-service.interface.js';
|
|
11
|
+
export type { IWorktreeService, WorktreeInfo } from './worktree-service.interface.js';
|
|
12
|
+
export { WorktreeError, WorktreeErrorCode } from './worktree-service.interface.js';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,GAC7B,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AACzC,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Service Output Ports
|
|
3
|
+
*
|
|
4
|
+
* Interfaces for external services and integrations.
|
|
5
|
+
*/
|
|
6
|
+
export { IssueFetcherError, IssueNotFoundError, IssueAuthenticationError, IssueServiceUnavailableError, } from './external-issue-fetcher.interface.js';
|
|
7
|
+
export { WorktreeError, WorktreeErrorCode } from './worktree-service.interface.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spec-initializer.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/spec-initializer.interface.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,WAAW,qBAAqB;IACpC,kDAAkD;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,8CAA8C;IAC9C,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC;;;;;;;;;;;;;;;OAeG;IACH,UAAU,CACR,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACnC"}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Domain and Application layers depend on this interface
|
|
9
9
|
* - Infrastructure layer provides concrete implementations
|
|
10
10
|
*/
|
|
11
|
-
import type { VersionInfo } from '
|
|
11
|
+
import type { VersionInfo } from '../../../../domain/value-objects/version-info.js';
|
|
12
12
|
/**
|
|
13
13
|
* Port interface for reading version information.
|
|
14
14
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"version-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/version-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kDAAkD,CAAC;AAEpF;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;IAC9B;;;;OAIG;IACH,UAAU,IAAI,WAAW,CAAC;CAC3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-server-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/web-server-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH;;;;;;GAMG;AACH,MAAM,WAAW,iBAAiB;IAChC;;;;;;OAMG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/D;;OAEG;IACH,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"worktree-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/application/ports/output/services/worktree-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,8CAA8C;IAC9C,IAAI,EAAE,MAAM,CAAC;IACb,uBAAuB;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,4CAA4C;IAC5C,MAAM,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,MAAM,EAAE,OAAO,CAAC;CACjB;AAED;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,cAAc,mBAAmB;IACjC,aAAa,kBAAkB;IAC/B,SAAS,cAAc;IACvB,cAAc,mBAAmB;IACjC,SAAS,cAAc;CACxB;AAED;;GAEG;AACH,qBAAa,aAAc,SAAQ,KAAK;aAGpB,IAAI,EAAE,iBAAiB;aACvB,KAAK,CAAC,EAAE,KAAK;gBAF7B,OAAO,EAAE,MAAM,EACC,IAAI,EAAE,iBAAiB,EACvB,KAAK,CAAC,EAAE,KAAK,YAAA;CAKhC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;;;;OAQG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAEtF;;;;;OAKG;IACH,MAAM,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5C;;;;;OAKG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC,CAAC;IAEhD;;;;;;OAMG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE3D;;;;;;OAMG;IACH,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;CAC3D"}
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
* Approves a paused agent run (waiting_approval status) and
|
|
5
5
|
* spawns a new resume worker to continue graph execution.
|
|
6
6
|
*/
|
|
7
|
-
import type { IAgentRunRepository } from '../../ports/output/agent-run-repository.interface.js';
|
|
8
|
-
import type { IFeatureAgentProcessService } from '../../ports/output/feature-agent-process.interface.js';
|
|
9
|
-
import type { IFeatureRepository } from '../../ports/output/feature-repository.interface.js';
|
|
10
|
-
import type { IWorktreeService } from '../../ports/output/worktree-service.interface.js';
|
|
7
|
+
import type { IAgentRunRepository } from '../../ports/output/agents/agent-run-repository.interface.js';
|
|
8
|
+
import type { IFeatureAgentProcessService } from '../../ports/output/agents/feature-agent-process.interface.js';
|
|
9
|
+
import type { IFeatureRepository } from '../../ports/output/repositories/feature-repository.interface.js';
|
|
10
|
+
import type { IWorktreeService } from '../../ports/output/services/worktree-service.interface.js';
|
|
11
11
|
export declare class ApproveAgentRunUseCase {
|
|
12
12
|
private readonly agentRunRepository;
|
|
13
13
|
private readonly processService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approve-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/approve-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"approve-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/approve-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AACvG,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,8DAA8D,CAAC;AAChH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAC1G,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAGlG,qBACa,sBAAsB;IAG/B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAEnC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAE/B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAElC,OAAO,CAAC,QAAQ,CAAC,eAAe;gBANf,kBAAkB,EAAE,mBAAmB,EAEvC,cAAc,EAAE,2BAA2B,EAE3C,iBAAiB,EAAE,kBAAkB,EAErC,eAAe,EAAE,gBAAgB;IAG9C,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CAsC1E"}
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
* - Returns updated settings after persistence
|
|
12
12
|
*/
|
|
13
13
|
import type { Settings, AgentType, AgentAuthMethod } from '../../../domain/generated/output.js';
|
|
14
|
-
import type { ISettingsRepository } from '../../ports/output/settings.repository.interface.js';
|
|
15
|
-
import type { IAgentValidator } from '../../ports/output/agent-validator.interface.js';
|
|
14
|
+
import type { ISettingsRepository } from '../../ports/output/repositories/settings.repository.interface.js';
|
|
15
|
+
import type { IAgentValidator } from '../../ports/output/agents/agent-validator.interface.js';
|
|
16
16
|
/**
|
|
17
17
|
* Input for configuring an AI coding agent.
|
|
18
18
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configure-agent.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/configure-agent.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAChG,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"configure-agent.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/configure-agent.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAChG,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kEAAkE,CAAC;AAC5G,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AAE9F;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,SAAS,CAAC;IAChB,UAAU,EAAE,eAAe,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;;GASG;AACH,qBACa,qBAAqB;IAG9B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAEnC,OAAO,CAAC,QAAQ,CAAC,cAAc;gBAFd,kBAAkB,EAAE,mBAAmB,EAEvC,cAAc,EAAE,eAAe;IAGlD;;;;;;OAMG;IACG,OAAO,CAAC,KAAK,EAAE,mBAAmB,GAAG,OAAO,CAAC,QAAQ,CAAC;CA+B7D"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Removes an agent run record from the database.
|
|
5
5
|
* Refuses to delete running agents — stop them first.
|
|
6
6
|
*/
|
|
7
|
-
import type { IAgentRunRepository } from '../../ports/output/agent-run-repository.interface.js';
|
|
7
|
+
import type { IAgentRunRepository } from '../../ports/output/agents/agent-run-repository.interface.js';
|
|
8
8
|
export declare class DeleteAgentRunUseCase {
|
|
9
9
|
private readonly agentRunRepository;
|
|
10
10
|
constructor(agentRunRepository: IAgentRunRepository);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/delete-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"delete-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/delete-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AAGvG,qBACa,qBAAqB;IAG9B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB;IAGpD,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CAgBzE"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Retrieves agent run details by ID for display purposes.
|
|
5
5
|
*/
|
|
6
6
|
import type { AgentRun } from '../../../domain/generated/output.js';
|
|
7
|
-
import type { IAgentRunRepository } from '../../ports/output/agent-run-repository.interface.js';
|
|
7
|
+
import type { IAgentRunRepository } from '../../ports/output/agents/agent-run-repository.interface.js';
|
|
8
8
|
/**
|
|
9
9
|
* Use case for getting a specific agent run by ID.
|
|
10
10
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/get-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"get-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/get-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AAEvG;;GAEG;AACH,qBACa,kBAAkB;IAG3B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB;IAG1D;;;;;OAKG;IACG,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;CAGpD"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Retrieves all agent runs for listing/display purposes.
|
|
5
5
|
*/
|
|
6
6
|
import type { AgentRun } from '../../../domain/generated/output.js';
|
|
7
|
-
import type { IAgentRunRepository } from '../../ports/output/agent-run-repository.interface.js';
|
|
7
|
+
import type { IAgentRunRepository } from '../../ports/output/agents/agent-run-repository.interface.js';
|
|
8
8
|
/**
|
|
9
9
|
* Use case for listing all agent runs.
|
|
10
10
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-agent-runs.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/list-agent-runs.use-case.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"list-agent-runs.use-case.d.ts","sourceRoot":"","sources":["../../../../../src/application/use-cases/agents/list-agent-runs.use-case.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AAEvG;;GAEG;AACH,qBACa,oBAAoB;IAG7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB;IAG1D;;;;OAIG;IACG,OAAO,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC;CAoBrC"}
|