@codemcp/ade 0.2.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.
Files changed (150) hide show
  1. package/.ade/skills/adr-nygard/SKILL.md +45 -0
  2. package/.ade/skills/conventional-commits/SKILL.md +36 -0
  3. package/.ade/skills/tanstack-architecture/SKILL.md +25 -0
  4. package/.ade/skills/tanstack-code/SKILL.md +25 -0
  5. package/.ade/skills/tanstack-design/SKILL.md +24 -0
  6. package/.ade/skills/tanstack-testing/SKILL.md +24 -0
  7. package/.agentskills/skills/adr-nygard/SKILL.md +45 -0
  8. package/.agentskills/skills/commit/SKILL.md +20 -0
  9. package/.agentskills/skills/tdd/SKILL.md +10 -0
  10. package/.beads/README.md +85 -0
  11. package/.beads/config.yaml +63 -0
  12. package/.beads/interactions.jsonl +0 -0
  13. package/.beads/issues.jsonl +46 -0
  14. package/.beads/last-touched +1 -0
  15. package/.beads/metadata.json +4 -0
  16. package/.claude/settings.json +16 -0
  17. package/.claude/skills/extending-catalog/SKILL.md +41 -0
  18. package/.cursor/mcp.json +16 -0
  19. package/.cursor/rules/ade.mdc +10 -0
  20. package/.github/agents/ade.agent.md +28 -0
  21. package/.github/copilot-instructions.md +11 -0
  22. package/.github/workflows/pr.yml +38 -0
  23. package/.github/workflows/release.yml +124 -0
  24. package/.husky/post-checkout +2 -0
  25. package/.husky/post-merge +2 -0
  26. package/.husky/pre-commit +2 -0
  27. package/.husky/pre-push +8 -0
  28. package/.kiro/agents/ade.json +20 -0
  29. package/.kiro/settings/mcp.json +14 -0
  30. package/.knowledge/.prettierignore +1 -0
  31. package/.knowledge/config.yaml +9 -0
  32. package/.lintstagedrc.js +4 -0
  33. package/.mcp.json +20 -0
  34. package/.opencode/agents/ade.md +118 -0
  35. package/.prettierignore +2 -0
  36. package/.prettierrc.yaml +3 -0
  37. package/.vibe/beads-state-ade-autonomy-facet-46zodk.json +29 -0
  38. package/.vibe/beads-state-ade-fix-no-arch-selected-hvfiio.json +34 -0
  39. package/.vibe/development-plan-autonomy-facet.md +214 -0
  40. package/.vibe/development-plan-fix-no-arch-selected.md +103 -0
  41. package/.vscode/mcp.json +24 -0
  42. package/LICENSE +21 -0
  43. package/README.md +293 -0
  44. package/config.lock.yaml +118 -0
  45. package/config.yaml +10 -0
  46. package/docs/CLI-PRD.md +251 -0
  47. package/docs/CLI-design.md +646 -0
  48. package/docs/adrs/0001-tui-framework-selection.md +77 -0
  49. package/eslint.config.mjs +38 -0
  50. package/opencode.json +17 -0
  51. package/package.json +79 -0
  52. package/packages/cli/.prettierignore +1 -0
  53. package/packages/cli/dist/commands/install.js +39 -0
  54. package/packages/cli/dist/commands/setup.js +177 -0
  55. package/packages/cli/dist/index.js +43 -0
  56. package/packages/cli/dist/knowledge-installer.js +38 -0
  57. package/packages/cli/dist/version.js +1 -0
  58. package/packages/cli/eslint.config.mjs +40 -0
  59. package/packages/cli/nodemon.json +7 -0
  60. package/packages/cli/package.json +40 -0
  61. package/packages/cli/src/commands/conventions.integration.spec.ts +267 -0
  62. package/packages/cli/src/commands/install.integration.spec.ts +123 -0
  63. package/packages/cli/src/commands/install.spec.ts +169 -0
  64. package/packages/cli/src/commands/install.ts +63 -0
  65. package/packages/cli/src/commands/knowledge.integration.spec.ts +129 -0
  66. package/packages/cli/src/commands/setup.integration.spec.ts +148 -0
  67. package/packages/cli/src/commands/setup.spec.ts +442 -0
  68. package/packages/cli/src/commands/setup.ts +252 -0
  69. package/packages/cli/src/index.ts +52 -0
  70. package/packages/cli/src/knowledge-installer.spec.ts +111 -0
  71. package/packages/cli/src/knowledge-installer.ts +54 -0
  72. package/packages/cli/src/version.ts +1 -0
  73. package/packages/cli/tsconfig.build.json +8 -0
  74. package/packages/cli/tsconfig.json +10 -0
  75. package/packages/cli/tsconfig.vitest.json +7 -0
  76. package/packages/cli/vitest.config.ts +5 -0
  77. package/packages/core/.prettierignore +1 -0
  78. package/packages/core/eslint.config.mjs +40 -0
  79. package/packages/core/nodemon.json +7 -0
  80. package/packages/core/package.json +34 -0
  81. package/packages/core/src/catalog/catalog.spec.ts +570 -0
  82. package/packages/core/src/catalog/facets/architecture.ts +438 -0
  83. package/packages/core/src/catalog/facets/autonomy.ts +106 -0
  84. package/packages/core/src/catalog/facets/backpressure.ts +143 -0
  85. package/packages/core/src/catalog/facets/practices.ts +173 -0
  86. package/packages/core/src/catalog/facets/process.ts +50 -0
  87. package/packages/core/src/catalog/index.ts +93 -0
  88. package/packages/core/src/config.spec.ts +165 -0
  89. package/packages/core/src/config.ts +39 -0
  90. package/packages/core/src/index.ts +55 -0
  91. package/packages/core/src/registry.spec.ts +145 -0
  92. package/packages/core/src/registry.ts +70 -0
  93. package/packages/core/src/resolver.spec.ts +626 -0
  94. package/packages/core/src/resolver.ts +214 -0
  95. package/packages/core/src/types.ts +179 -0
  96. package/packages/core/src/writers/git-hooks.ts +9 -0
  97. package/packages/core/src/writers/instruction.spec.ts +42 -0
  98. package/packages/core/src/writers/instruction.ts +8 -0
  99. package/packages/core/src/writers/knowledge.spec.ts +26 -0
  100. package/packages/core/src/writers/knowledge.ts +15 -0
  101. package/packages/core/src/writers/permission-policy.ts +8 -0
  102. package/packages/core/src/writers/setup-note.ts +9 -0
  103. package/packages/core/src/writers/skills.spec.ts +109 -0
  104. package/packages/core/src/writers/skills.ts +9 -0
  105. package/packages/core/src/writers/workflows.spec.ts +72 -0
  106. package/packages/core/src/writers/workflows.ts +26 -0
  107. package/packages/core/tsconfig.build.json +8 -0
  108. package/packages/core/tsconfig.json +7 -0
  109. package/packages/core/tsconfig.vitest.json +7 -0
  110. package/packages/core/vitest.config.ts +5 -0
  111. package/packages/harnesses/.prettierignore +1 -0
  112. package/packages/harnesses/eslint.config.mjs +40 -0
  113. package/packages/harnesses/package.json +35 -0
  114. package/packages/harnesses/src/index.spec.ts +45 -0
  115. package/packages/harnesses/src/index.ts +47 -0
  116. package/packages/harnesses/src/permission-policy.ts +173 -0
  117. package/packages/harnesses/src/skills-installer.ts +54 -0
  118. package/packages/harnesses/src/types.ts +12 -0
  119. package/packages/harnesses/src/util.ts +221 -0
  120. package/packages/harnesses/src/writers/claude-code.spec.ts +320 -0
  121. package/packages/harnesses/src/writers/claude-code.ts +107 -0
  122. package/packages/harnesses/src/writers/cline.spec.ts +212 -0
  123. package/packages/harnesses/src/writers/cline.ts +24 -0
  124. package/packages/harnesses/src/writers/copilot.spec.ts +258 -0
  125. package/packages/harnesses/src/writers/copilot.ts +105 -0
  126. package/packages/harnesses/src/writers/cursor.spec.ts +219 -0
  127. package/packages/harnesses/src/writers/cursor.ts +95 -0
  128. package/packages/harnesses/src/writers/kiro.spec.ts +228 -0
  129. package/packages/harnesses/src/writers/kiro.ts +89 -0
  130. package/packages/harnesses/src/writers/opencode.spec.ts +258 -0
  131. package/packages/harnesses/src/writers/opencode.ts +67 -0
  132. package/packages/harnesses/src/writers/roo-code.spec.ts +197 -0
  133. package/packages/harnesses/src/writers/roo-code.ts +71 -0
  134. package/packages/harnesses/src/writers/universal.spec.ts +134 -0
  135. package/packages/harnesses/src/writers/universal.ts +84 -0
  136. package/packages/harnesses/src/writers/windsurf.spec.ts +178 -0
  137. package/packages/harnesses/src/writers/windsurf.ts +89 -0
  138. package/packages/harnesses/tsconfig.build.json +8 -0
  139. package/packages/harnesses/tsconfig.json +7 -0
  140. package/packages/harnesses/tsconfig.vitest.json +7 -0
  141. package/packages/harnesses/vitest.config.ts +5 -0
  142. package/pnpm-workspace.yaml +2 -0
  143. package/scripts/rename-packages.sh +23 -0
  144. package/skills-lock.json +20 -0
  145. package/tsconfig.base.json +25 -0
  146. package/tsconfig.build.json +7 -0
  147. package/tsconfig.json +13 -0
  148. package/turbo.json +47 -0
  149. package/vitest.config.ts +22 -0
  150. package/vitest.setup.ts +0 -0
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: ade
3
+ description: ADE — Agentic Development Environment agent with project conventions and tools
4
+ tools:
5
+ - read
6
+ - edit
7
+ - search
8
+ - agent
9
+ - workflows/*
10
+ - agentskills/*
11
+ mcp-servers:
12
+ workflows:
13
+ type: stdio
14
+ command: "npx"
15
+ args: ["@codemcp/workflows-server@latest"]
16
+ tools: ["*"]
17
+ agentskills:
18
+ type: stdio
19
+ command: "npx"
20
+ args: ["-y", "@codemcp/skills-server"]
21
+ tools: ["*"]
22
+ ---
23
+
24
+ You are an AI assistant that helps users develop software features using the workflows server.
25
+ IMPORTANT: Call whats_next() after each user message to get phase-specific instructions and maintain the development workflow.
26
+ Each tool call returns a JSON response with an "instructions" field. Follow these instructions immediately after you receive them.
27
+ Use the development plan which you will retrieve via whats_next() to record important insights and decisions as per the structure of the plan.
28
+ Do not use your own task management tools.
@@ -0,0 +1,11 @@
1
+ You are an AI assistant that helps users develop software features using the workflows server.
2
+ IMPORTANT: Call whats_next() after each user message to get phase-specific instructions and maintain the development workflow.
3
+ Each tool call returns a JSON response with an "instructions" field. Follow these instructions immediately after you receive them.
4
+ Use the development plan which you will retrieve via whats_next() to record important insights and decisions as per the structure of the plan.
5
+ Do not use your own task management tools.
6
+
7
+ This project follows TanStack conventions. Use use_skill() to access the tanstack-architecture, tanstack-design, tanstack-code, tanstack-testing, and playwright-cli skills before making changes.
8
+
9
+ Use the conventional-commits skill (via use_skill()) when writing commit messages.
10
+
11
+ This project uses Architecture Decision Records. Use the adr-nygard skill (via use_skill()) when making or documenting architectural decisions. Store ADRs in docs/adr/.
@@ -0,0 +1,38 @@
1
+ name: PR
2
+
3
+ on:
4
+ pull_request:
5
+ branches: [main]
6
+
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v5
13
+ with:
14
+ fetch-depth: 0
15
+
16
+ - name: Setup pnpm
17
+ uses: pnpm/action-setup@v4
18
+
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v5
21
+ with:
22
+ node-version: "22"
23
+ cache: "pnpm"
24
+
25
+ - name: Install dependencies
26
+ run: pnpm install
27
+
28
+ - name: Check formatting
29
+ run: pnpm run format:check:all
30
+
31
+ - name: Run linting
32
+ run: pnpm run lint:all
33
+
34
+ - name: Build project
35
+ run: pnpm run build
36
+
37
+ - name: Run tests
38
+ run: pnpm test
@@ -0,0 +1,124 @@
1
+ name: Release and Publish
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+
7
+ permissions:
8
+ contents: write
9
+ packages: write
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v5
17
+ with:
18
+ fetch-depth: 0
19
+
20
+ - name: Setup pnpm
21
+ uses: pnpm/action-setup@v4
22
+
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@v5
25
+ with:
26
+ node-version: "22"
27
+ cache: "pnpm"
28
+
29
+ - name: Install dependencies
30
+ run: pnpm install
31
+
32
+ - name: Check formatting
33
+ run: pnpm run format:check:all
34
+
35
+ - name: Run linting
36
+ run: pnpm run lint:all
37
+
38
+ - name: Build project
39
+ run: pnpm run build
40
+
41
+ - name: Run tests
42
+ run: pnpm test
43
+
44
+ release:
45
+ needs: test
46
+ runs-on: ubuntu-latest
47
+ steps:
48
+ - name: Generate GitHub App Token
49
+ id: generate_token
50
+ uses: tibdex/github-app-token@v1
51
+ with:
52
+ app_id: ${{ vars.VERSION_BUMPER_APPID }}
53
+ private_key: ${{ secrets.VERSION_BUMPER_SECRET }}
54
+
55
+ - name: Checkout
56
+ uses: actions/checkout@v5
57
+ with:
58
+ fetch-depth: 0
59
+ token: ${{ steps.generate_token.outputs.token }}
60
+
61
+ - name: Setup pnpm
62
+ uses: pnpm/action-setup@v4
63
+
64
+ - name: Setup Node.js
65
+ uses: actions/setup-node@v5
66
+ with:
67
+ node-version: "22"
68
+ cache: "pnpm"
69
+ registry-url: "https://registry.npmjs.org"
70
+
71
+ - name: Install dependencies
72
+ run: pnpm install
73
+
74
+ - name: Build project
75
+ run: pnpm run build
76
+
77
+ - name: Bump version and create tag
78
+ id: version
79
+ uses: mathieudutour/github-tag-action@v6.2
80
+ with:
81
+ github_token: ${{ secrets.GITHUB_TOKEN }}
82
+ default_bump: patch
83
+ tag_prefix: v
84
+
85
+ - name: Update package.json version
86
+ if: steps.version.outputs.new_tag
87
+ run: |
88
+ NEW_VERSION=${{ steps.version.outputs.new_version }}
89
+
90
+ # Update root package.json
91
+ pnpm version $NEW_VERSION --no-git-tag-version
92
+
93
+ # Update all workspace package versions
94
+ pnpm -r exec pnpm version $NEW_VERSION --no-git-tag-version
95
+
96
+ git config --local user.email "action@github.com"
97
+ git config --local user.name "GitHub Action"
98
+ git add package.json packages/*/package.json pnpm-lock.yaml
99
+ git commit -m "chore: bump version to $NEW_VERSION [skip ci]" || exit 0
100
+ git push
101
+ env:
102
+ GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
103
+
104
+ - name: Create GitHub Release
105
+ if: steps.version.outputs.new_tag
106
+ uses: softprops/action-gh-release@v1
107
+ with:
108
+ tag_name: ${{ steps.version.outputs.new_tag }}
109
+ name: Release ${{ steps.version.outputs.new_tag }}
110
+ body: ${{ steps.version.outputs.changelog }}
111
+ draft: false
112
+ prerelease: false
113
+ env:
114
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
115
+
116
+ - name: Publish to npm
117
+ if: steps.version.outputs.new_tag
118
+ run: |
119
+ # Publish all packages in workspace
120
+ # pnpm -r publishes packages in topological order (dependencies first)
121
+ # Root package is private and will be skipped automatically
122
+ pnpm -r publish --no-git-checks
123
+ env:
124
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,2 @@
1
+ # Automate and ensure dependencies are installed/synced with the branch's codebase
2
+ pnpm install
@@ -0,0 +1,2 @@
1
+ # Automate and ensure dependencies are installed/synced with the branch's codebase
2
+ pnpm install
@@ -0,0 +1,2 @@
1
+ # Ensure files are linted before commit
2
+ pnpm lint-staged
@@ -0,0 +1,8 @@
1
+ # Ensure Typescript files have no errors before pushing
2
+ # Ensure there is no linting or formatting errors before pushing
3
+ pnpm run lint:all
4
+ pnpm run format:check:all
5
+ pnpm run typecheck:all
6
+
7
+ # Run unit tests
8
+ pnpm test
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "ade",
3
+ "description": "ADE — Agentic Development Environment agent with project conventions and tools.",
4
+ "prompt": "You are an AI assistant that helps users develop software features using the workflows server.\nIMPORTANT: Call whats_next() after each user message to get phase-specific instructions and maintain the development workflow.\nEach tool call returns a JSON response with an \"instructions\" field. Follow these instructions immediately after you receive them.\nUse the development plan which you will retrieve via whats_next() to record important insights and decisions as per the structure of the plan.\nDo not use your own task management tools.",
5
+ "mcpServers": {
6
+ "workflows": {
7
+ "command": "npx",
8
+ "args": ["@codemcp/workflows-server@latest"],
9
+ "autoApprove": ["*"]
10
+ },
11
+ "agentskills": {
12
+ "command": "npx",
13
+ "args": ["-y", "@codemcp/skills-server"],
14
+ "autoApprove": ["*"]
15
+ }
16
+ },
17
+ "tools": ["read", "write", "spec", "@workflows/*", "@agentskills/*"],
18
+ "allowedTools": ["read", "write", "spec", "@workflows/*", "@agentskills/*"],
19
+ "useLegacyMcpJson": true
20
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "mcpServers": {
3
+ "workflows": {
4
+ "command": "npx",
5
+ "args": ["@codemcp/workflows-server@latest"],
6
+ "autoApprove": ["*"]
7
+ },
8
+ "agentskills": {
9
+ "command": "npx",
10
+ "args": ["-y", "@codemcp/skills-server"],
11
+ "autoApprove": ["*"]
12
+ }
13
+ }
14
+ }
@@ -0,0 +1 @@
1
+ docsets
@@ -0,0 +1,9 @@
1
+ version: "1.0"
2
+ docsets:
3
+ - id: conventional-commits-spec
4
+ name: The Conventional Commits specification
5
+ description: "Git repository: https://github.com/conventional-commits/conventionalcommits.org.git"
6
+ sources:
7
+ - url: https://github.com/conventional-commits/conventionalcommits.org.git
8
+ type: git_repo
9
+ branch: main
@@ -0,0 +1,4 @@
1
+ export default {
2
+ "*": "prettier --write --ignore-unknown",
3
+ "*.js,*.ts": "eslint --fix"
4
+ };
package/.mcp.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "mcpServers": {
3
+ "workflows": {
4
+ "command": "npx",
5
+ "args": ["@codemcp/workflows-server@latest"]
6
+ },
7
+ "@codemcp/knowledge-server": {
8
+ "command": "npx",
9
+ "args": ["-y", "@codemcp/knowledge-server"]
10
+ },
11
+ "agentskills": {
12
+ "command": "npx",
13
+ "args": ["-y", "@codemcp/skills-server"]
14
+ },
15
+ "knowledge": {
16
+ "command": "npx",
17
+ "args": ["-y", "@codemcp/knowledge-server"]
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,118 @@
1
+ ---
2
+ name: ade
3
+ description: ADE — Agentic Development Environment agent with project conventions and tools
4
+ permission:
5
+ read:
6
+ "*": "allow"
7
+ "*.env": "deny"
8
+ "*.env.*": "deny"
9
+ "*.env.example": "allow"
10
+ edit: "allow"
11
+ glob: "allow"
12
+ grep: "allow"
13
+ list: "allow"
14
+ lsp: "allow"
15
+ task: "allow"
16
+ todoread: "deny"
17
+ todowrite: "deny"
18
+ skill: "deny"
19
+ webfetch: "ask"
20
+ websearch: "ask"
21
+ codesearch: "ask"
22
+ bash:
23
+ "*": "deny"
24
+ "grep *": "allow"
25
+ "rg *": "allow"
26
+ "find *": "allow"
27
+ "fd *": "allow"
28
+ ls: "allow"
29
+ "ls *": "allow"
30
+ "cat *": "allow"
31
+ "head *": "allow"
32
+ "tail *": "allow"
33
+ "wc *": "allow"
34
+ "sort *": "allow"
35
+ "uniq *": "allow"
36
+ "diff *": "allow"
37
+ "echo *": "allow"
38
+ "printf *": "allow"
39
+ pwd: "allow"
40
+ "which *": "allow"
41
+ "type *": "allow"
42
+ whoami: "allow"
43
+ date: "allow"
44
+ "date *": "allow"
45
+ env: "allow"
46
+ "tree *": "allow"
47
+ "file *": "allow"
48
+ "stat *": "allow"
49
+ "readlink *": "allow"
50
+ "realpath *": "allow"
51
+ "dirname *": "allow"
52
+ "basename *": "allow"
53
+ "sed *": "allow"
54
+ "awk *": "allow"
55
+ "cut *": "allow"
56
+ "tr *": "allow"
57
+ "tee *": "allow"
58
+ "xargs *": "allow"
59
+ "jq *": "allow"
60
+ "yq *": "allow"
61
+ "mkdir *": "allow"
62
+ "touch *": "allow"
63
+ "cp *": "ask"
64
+ "mv *": "ask"
65
+ "ln *": "ask"
66
+ "npm *": "ask"
67
+ "node *": "ask"
68
+ "pip *": "ask"
69
+ "python *": "ask"
70
+ "python3 *": "ask"
71
+ "rm *": "deny"
72
+ "rmdir *": "deny"
73
+ "curl *": "deny"
74
+ "wget *": "deny"
75
+ "chmod *": "deny"
76
+ "chown *": "deny"
77
+ "sudo *": "deny"
78
+ "su *": "deny"
79
+ "sh *": "deny"
80
+ "bash *": "deny"
81
+ "zsh *": "deny"
82
+ "eval *": "deny"
83
+ "exec *": "deny"
84
+ "source *": "deny"
85
+ ". *": "deny"
86
+ "nohup *": "deny"
87
+ "dd *": "deny"
88
+ "mkfs *": "deny"
89
+ "mount *": "deny"
90
+ "umount *": "deny"
91
+ "kill *": "deny"
92
+ "killall *": "deny"
93
+ "pkill *": "deny"
94
+ "nc *": "deny"
95
+ "ncat *": "deny"
96
+ "ssh *": "deny"
97
+ "scp *": "deny"
98
+ "rsync *": "deny"
99
+ "docker *": "deny"
100
+ "kubectl *": "deny"
101
+ "systemctl *": "deny"
102
+ "service *": "deny"
103
+ "crontab *": "deny"
104
+ reboot: "deny"
105
+ "shutdown *": "deny"
106
+ "passwd *": "deny"
107
+ "useradd *": "deny"
108
+ "userdel *": "deny"
109
+ "iptables *": "deny"
110
+ external_directory: "deny"
111
+ doom_loop: "deny"
112
+ ---
113
+
114
+ You are an AI assistant that helps users develop software features using the workflows server.
115
+ IMPORTANT: Call whats_next() after each user message to get phase-specific instructions and maintain the development workflow.
116
+ Each tool call returns a JSON response with an "instructions" field. Follow these instructions immediately after you receive them.
117
+ Use the development plan which you will retrieve via whats_next() to record important insights and decisions as per the structure of the plan.
118
+ Do not use your own task management tools.
@@ -0,0 +1,2 @@
1
+ dist
2
+ .knowledge/docsets
@@ -0,0 +1,3 @@
1
+ tabWidth: 2
2
+ trailingComma: "none"
3
+ useTabs: false
@@ -0,0 +1,29 @@
1
+ {
2
+ "conversationId": "ade-autonomy-facet-46zodk",
3
+ "projectPath": "/Users/oliverjaegle/projects/privat/codemcp/ade",
4
+ "epicId": "ade-2",
5
+ "phaseTasks": [
6
+ {
7
+ "phaseId": "explore",
8
+ "phaseName": "Explore",
9
+ "taskId": "ade-2.1"
10
+ },
11
+ {
12
+ "phaseId": "plan",
13
+ "phaseName": "Plan",
14
+ "taskId": "ade-2.2"
15
+ },
16
+ {
17
+ "phaseId": "code",
18
+ "phaseName": "Code",
19
+ "taskId": "ade-2.3"
20
+ },
21
+ {
22
+ "phaseId": "commit",
23
+ "phaseName": "Commit",
24
+ "taskId": "ade-2.4"
25
+ }
26
+ ],
27
+ "createdAt": "2026-03-18T07:42:25.681Z",
28
+ "updatedAt": "2026-03-18T07:42:25.681Z"
29
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "conversationId": "ade-fix-no-arch-selected-hvfiio",
3
+ "projectPath": "/Users/oliverjaegle/projects/privat/codemcp/ade",
4
+ "epicId": "ade-1",
5
+ "phaseTasks": [
6
+ {
7
+ "phaseId": "reproduce",
8
+ "phaseName": "Reproduce",
9
+ "taskId": "ade-1.1"
10
+ },
11
+ {
12
+ "phaseId": "analyze",
13
+ "phaseName": "Analyze",
14
+ "taskId": "ade-1.2"
15
+ },
16
+ {
17
+ "phaseId": "fix",
18
+ "phaseName": "Fix",
19
+ "taskId": "ade-1.3"
20
+ },
21
+ {
22
+ "phaseId": "verify",
23
+ "phaseName": "Verify",
24
+ "taskId": "ade-1.4"
25
+ },
26
+ {
27
+ "phaseId": "finalize",
28
+ "phaseName": "Finalize",
29
+ "taskId": "ade-1.5"
30
+ }
31
+ ],
32
+ "createdAt": "2026-03-18T07:27:28.580Z",
33
+ "updatedAt": "2026-03-18T07:27:28.580Z"
34
+ }