agent-issues 0.0.119

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 (208) hide show
  1. package/.github/agents/agent-issues.agent.md +54 -0
  2. package/.github/agents/agent-issues.claude.md +51 -0
  3. package/dist/agent-installer.d.ts +49 -0
  4. package/dist/agent-installer.js +171 -0
  5. package/dist/agent-installer.js.map +1 -0
  6. package/dist/auth-session.d.ts +40 -0
  7. package/dist/auth-session.js +107 -0
  8. package/dist/auth-session.js.map +1 -0
  9. package/dist/body-backfill.d.ts +26 -0
  10. package/dist/body-backfill.js +219 -0
  11. package/dist/body-backfill.js.map +1 -0
  12. package/dist/build-mode.d.ts +1 -0
  13. package/dist/build-mode.js +1 -0
  14. package/dist/build-mode.js.map +1 -0
  15. package/dist/cli/commands/auth.d.ts +61 -0
  16. package/dist/cli/commands/auth.js +134 -0
  17. package/dist/cli/commands/auth.js.map +1 -0
  18. package/dist/cli/commands/backfill.d.ts +8 -0
  19. package/dist/cli/commands/backfill.js +36 -0
  20. package/dist/cli/commands/backfill.js.map +1 -0
  21. package/dist/cli/commands/comments.d.ts +34 -0
  22. package/dist/cli/commands/comments.js +124 -0
  23. package/dist/cli/commands/comments.js.map +1 -0
  24. package/dist/cli/commands/context.d.ts +13 -0
  25. package/dist/cli/commands/context.js +156 -0
  26. package/dist/cli/commands/context.js.map +1 -0
  27. package/dist/cli/commands/entities.d.ts +91 -0
  28. package/dist/cli/commands/entities.js +420 -0
  29. package/dist/cli/commands/entities.js.map +1 -0
  30. package/dist/cli/commands/export.d.ts +20 -0
  31. package/dist/cli/commands/export.js +98 -0
  32. package/dist/cli/commands/export.js.map +1 -0
  33. package/dist/cli/commands/fallback.d.ts +6 -0
  34. package/dist/cli/commands/fallback.js +10 -0
  35. package/dist/cli/commands/fallback.js.map +1 -0
  36. package/dist/cli/commands/handoff.d.ts +1 -0
  37. package/dist/cli/commands/handoff.js +2 -0
  38. package/dist/cli/commands/handoff.js.map +1 -0
  39. package/dist/cli/commands/installers.d.ts +37 -0
  40. package/dist/cli/commands/installers.js +78 -0
  41. package/dist/cli/commands/installers.js.map +1 -0
  42. package/dist/cli/commands/kanban.d.ts +8 -0
  43. package/dist/cli/commands/kanban.js +83 -0
  44. package/dist/cli/commands/kanban.js.map +1 -0
  45. package/dist/cli/commands/meta.d.ts +14 -0
  46. package/dist/cli/commands/meta.js +33 -0
  47. package/dist/cli/commands/meta.js.map +1 -0
  48. package/dist/cli/commands/plan-entries.d.ts +30 -0
  49. package/dist/cli/commands/plan-entries.js +94 -0
  50. package/dist/cli/commands/plan-entries.js.map +1 -0
  51. package/dist/cli/commands/site.d.ts +29 -0
  52. package/dist/cli/commands/site.js +89 -0
  53. package/dist/cli/commands/site.js.map +1 -0
  54. package/dist/cli/commands/sql.d.ts +6 -0
  55. package/dist/cli/commands/sql.js +21 -0
  56. package/dist/cli/commands/sql.js.map +1 -0
  57. package/dist/cli/commands/synchronize.d.ts +12 -0
  58. package/dist/cli/commands/synchronize.js +31 -0
  59. package/dist/cli/commands/synchronize.js.map +1 -0
  60. package/dist/cli/commands/tenants.d.ts +29 -0
  61. package/dist/cli/commands/tenants.js +101 -0
  62. package/dist/cli/commands/tenants.js.map +1 -0
  63. package/dist/cli/index.d.ts +4 -0
  64. package/dist/cli/index.js +120 -0
  65. package/dist/cli/index.js.map +1 -0
  66. package/dist/cli/renderers.d.ts +250 -0
  67. package/dist/cli/renderers.js +286 -0
  68. package/dist/cli/renderers.js.map +1 -0
  69. package/dist/cli/shared.d.ts +97 -0
  70. package/dist/cli/shared.js +192 -0
  71. package/dist/cli/shared.js.map +1 -0
  72. package/dist/cli.d.ts +11 -0
  73. package/dist/cli.js +41 -0
  74. package/dist/cli.js.map +1 -0
  75. package/dist/context-cli.d.ts +16 -0
  76. package/dist/context-cli.js +131 -0
  77. package/dist/context-cli.js.map +1 -0
  78. package/dist/daemon/daemon-lifecycle.d.ts +1 -0
  79. package/dist/daemon/daemon-lifecycle.js +2 -0
  80. package/dist/daemon/daemon-lifecycle.js.map +1 -0
  81. package/dist/daemon/daemon-main.d.ts +14 -0
  82. package/dist/daemon/daemon-main.js +30 -0
  83. package/dist/daemon/daemon-main.js.map +1 -0
  84. package/dist/daemon/local-daemon-store.d.ts +21 -0
  85. package/dist/daemon/local-daemon-store.js +31 -0
  86. package/dist/daemon/local-daemon-store.js.map +1 -0
  87. package/dist/entity-projection.d.ts +141 -0
  88. package/dist/entity-projection.js +147 -0
  89. package/dist/entity-projection.js.map +1 -0
  90. package/dist/entra-device-login.d.ts +12 -0
  91. package/dist/entra-device-login.js +40 -0
  92. package/dist/entra-device-login.js.map +1 -0
  93. package/dist/export-files.d.ts +24 -0
  94. package/dist/export-files.js +230 -0
  95. package/dist/export-files.js.map +1 -0
  96. package/dist/export-markdown.d.ts +24 -0
  97. package/dist/export-markdown.js +343 -0
  98. package/dist/export-markdown.js.map +1 -0
  99. package/dist/help.d.ts +112 -0
  100. package/dist/help.js +1430 -0
  101. package/dist/help.js.map +1 -0
  102. package/dist/kanban/assets.d.ts +3 -0
  103. package/dist/kanban/assets.js +37 -0
  104. package/dist/kanban/assets.js.map +1 -0
  105. package/dist/kanban/index.d.ts +1 -0
  106. package/dist/kanban/index.js +2 -0
  107. package/dist/kanban/index.js.map +1 -0
  108. package/dist/kanban/server.d.ts +28 -0
  109. package/dist/kanban/server.js +118 -0
  110. package/dist/kanban/server.js.map +1 -0
  111. package/dist/mcp-installer.d.ts +32 -0
  112. package/dist/mcp-installer.js +118 -0
  113. package/dist/mcp-installer.js.map +1 -0
  114. package/dist/mcp-server/index.d.ts +11 -0
  115. package/dist/mcp-server/index.js +504 -0
  116. package/dist/mcp-server/index.js.map +1 -0
  117. package/dist/mcp-server/index.test.d.ts +1 -0
  118. package/dist/mcp-server/index.test.js +746 -0
  119. package/dist/mcp-server/index.test.js.map +1 -0
  120. package/dist/mcp-server/mcp-tool-audit.d.ts +6 -0
  121. package/dist/mcp-server/mcp-tool-audit.js +47 -0
  122. package/dist/mcp-server/mcp-tool-audit.js.map +1 -0
  123. package/dist/mcp-server/stdio.d.ts +2 -0
  124. package/dist/mcp-server/stdio.js +7 -0
  125. package/dist/mcp-server/stdio.js.map +1 -0
  126. package/dist/mcp.d.ts +2 -0
  127. package/dist/mcp.js +19 -0
  128. package/dist/mcp.js.map +1 -0
  129. package/dist/open-storage-driver.d.ts +53 -0
  130. package/dist/open-storage-driver.js +71 -0
  131. package/dist/open-storage-driver.js.map +1 -0
  132. package/dist/open-synchronize-stores.d.ts +24 -0
  133. package/dist/open-synchronize-stores.js +34 -0
  134. package/dist/open-synchronize-stores.js.map +1 -0
  135. package/dist/project-identity.d.ts +23 -0
  136. package/dist/project-identity.js +121 -0
  137. package/dist/project-identity.js.map +1 -0
  138. package/dist/runtime-access-boundary.d.ts +7 -0
  139. package/dist/runtime-access-boundary.js +182 -0
  140. package/dist/runtime-access-boundary.js.map +1 -0
  141. package/dist/service-discovery.d.ts +10 -0
  142. package/dist/service-discovery.js +64 -0
  143. package/dist/service-discovery.js.map +1 -0
  144. package/dist/site/assets.d.ts +4 -0
  145. package/dist/site/assets.js +46 -0
  146. package/dist/site/assets.js.map +1 -0
  147. package/dist/site/cloud-events-relay.d.ts +18 -0
  148. package/dist/site/cloud-events-relay.js +78 -0
  149. package/dist/site/cloud-events-relay.js.map +1 -0
  150. package/dist/site/index.d.ts +1 -0
  151. package/dist/site/index.js +2 -0
  152. package/dist/site/index.js.map +1 -0
  153. package/dist/site/server.d.ts +42 -0
  154. package/dist/site/server.js +320 -0
  155. package/dist/site/server.js.map +1 -0
  156. package/dist/skill-installer.d.ts +35 -0
  157. package/dist/skill-installer.js +174 -0
  158. package/dist/skill-installer.js.map +1 -0
  159. package/dist/vitest-setup.d.ts +1 -0
  160. package/dist/vitest-setup.js +7 -0
  161. package/dist/vitest-setup.js.map +1 -0
  162. package/package.json +42 -0
  163. package/site/dist/assets/index-DKEVC0aQ.css +1 -0
  164. package/site/dist/assets/index-DSR4mIml.js +4396 -0
  165. package/site/dist/index.html +14 -0
  166. package/skills/agent-issues-language.md +5 -0
  167. package/skills/agent-issues-operating-contract.md +208 -0
  168. package/skills/ai-agent-issues/SKILL.md +127 -0
  169. package/skills/ai-domain-modeling/ADR-FORMAT.md +48 -0
  170. package/skills/ai-domain-modeling/CONTEXT-FORMAT.md +54 -0
  171. package/skills/ai-domain-modeling/SKILL.md +45 -0
  172. package/skills/ai-grill-with-docs/SKILL.md +28 -0
  173. package/skills/ai-handoff/SKILL.md +41 -0
  174. package/skills/ai-implement/SKILL.md +98 -0
  175. package/skills/ai-migrate-docs/SKILL.md +65 -0
  176. package/skills/ai-next-work/SKILL.md +43 -0
  177. package/skills/ai-plan/SKILL.md +41 -0
  178. package/skills/ai-prepare/SKILL.md +79 -0
  179. package/skills/ai-prototype/LOGIC.md +67 -0
  180. package/skills/ai-prototype/SKILL.md +31 -0
  181. package/skills/ai-prototype/UI.md +112 -0
  182. package/skills/ai-recipe-migration/SKILL.md +49 -0
  183. package/skills/ai-start-work/SKILL.md +56 -0
  184. package/skills/ai-tdd/SKILL.md +99 -0
  185. package/skills/ai-tdd/deep-modules.md +33 -0
  186. package/skills/ai-tdd/interface-design.md +20 -0
  187. package/skills/ai-tdd/mocking.md +28 -0
  188. package/skills/ai-tdd/refactoring.md +10 -0
  189. package/skills/ai-tdd/tests.md +74 -0
  190. package/skills/ai-to-issues/SKILL.md +70 -0
  191. package/skills/ai-to-prd/SKILL.md +33 -0
  192. package/skills/ai-wayfinder/SKILL.md +110 -0
  193. package/skills/recipes/README.md +29 -0
  194. package/skills/recipes/adr.md +21 -0
  195. package/skills/recipes/context-summary.md +17 -0
  196. package/skills/recipes/context-term.md +3 -0
  197. package/skills/recipes/debt.md +21 -0
  198. package/skills/recipes/epic.md +21 -0
  199. package/skills/recipes/handoff.md +29 -0
  200. package/skills/recipes/initiative.md +21 -0
  201. package/skills/recipes/issue-comment.md +15 -0
  202. package/skills/recipes/issue.md +33 -0
  203. package/skills/recipes/prd.md +29 -0
  204. package/skills/recipes/project.md +21 -0
  205. package/skills/recipes/user-story.md +15 -0
  206. package/skills/recipes/version.md +13 -0
  207. package/skills/recipes/wayfinder-map.md +25 -0
  208. package/skills/recipes/wayfinder-ticket.md +17 -0
@@ -0,0 +1,21 @@
1
+ # Epic Recipe
2
+
3
+ Use this recipe for an epic record body.
4
+
5
+ ```markdown
6
+ ## Purpose
7
+
8
+ <The durable purpose of this epic.>
9
+
10
+ ## Scope
11
+
12
+ - <Work that this epic includes.>
13
+
14
+ ## Success Conditions
15
+
16
+ - <A condition that shows the epic is complete.>
17
+
18
+ ## Non-Goals
19
+
20
+ - <Work that this epic does not include.>
21
+ ```
@@ -0,0 +1,29 @@
1
+ # Handoff Recipe
2
+
3
+ Use this recipe to record continuation information for a later session.
4
+
5
+ ```markdown
6
+ ## Focus
7
+
8
+ <The immediate goal for the next session.>
9
+
10
+ ## Current State
11
+
12
+ <The completed work and the current worktree state.>
13
+
14
+ ## Tracked Scope
15
+
16
+ - <A tracked entity reference, title, and status.>
17
+
18
+ ## Blockers
19
+
20
+ - <A relevant blocking issue or state.>
21
+
22
+ ## Relevant Files
23
+
24
+ - `<path/to/file>`
25
+
26
+ ## Suggested Skills
27
+
28
+ - `<skill-name>`
29
+ ```
@@ -0,0 +1,21 @@
1
+ # Initiative Recipe
2
+
3
+ Use this recipe for an initiative record body.
4
+
5
+ ```markdown
6
+ ## Purpose
7
+
8
+ <The durable purpose of this initiative.>
9
+
10
+ ## Scope
11
+
12
+ - <Work that this initiative includes.>
13
+
14
+ ## Success Conditions
15
+
16
+ - <A condition that shows the initiative is complete.>
17
+
18
+ ## Non-Goals
19
+
20
+ - <Work that this initiative does not include.>
21
+ ```
@@ -0,0 +1,15 @@
1
+ # Issue Comment Recipe
2
+
3
+ Use free-form prose for the comment. Add the optional sections only when they help the reader.
4
+
5
+ ```markdown
6
+ <Comment text.>
7
+
8
+ ## Evidence
9
+
10
+ <Optional facts, observations, or links that support the comment.>
11
+
12
+ ## Proposed Action
13
+
14
+ <Optional next action for the reader.>
15
+ ```
@@ -0,0 +1,33 @@
1
+ # Issue Recipe
2
+
3
+ Use this recipe for a standard issue record body.
4
+
5
+ ```markdown
6
+ ## Work Mode
7
+
8
+ <AFK | HITL>
9
+
10
+ ## Outcome
11
+
12
+ <The user-visible result of this issue.>
13
+
14
+ ## Scope
15
+
16
+ - <Work included in this issue.>
17
+
18
+ ## Work Plan
19
+
20
+ - <A focused implementation step.>
21
+
22
+ ## Acceptance Criteria
23
+
24
+ - <An observable condition that proves completion.>
25
+
26
+ ## Verification
27
+
28
+ - <A focused validation command or inspection.>
29
+
30
+ ## Notes
31
+
32
+ <Relevant context, dependency, or exception.>
33
+ ```
@@ -0,0 +1,29 @@
1
+ # PRD Recipe
2
+
3
+ Use this recipe for a PRD record body. Child `userStory` entities are authoritative for the PRD's committed user stories. Do not duplicate their story text in this body.
4
+
5
+ ```markdown
6
+ ## Problem Statement
7
+
8
+ <The problem, from the user's point of view.>
9
+
10
+ ## Solution
11
+
12
+ <The solution, from the user's point of view.>
13
+
14
+ ## Implementation Decisions
15
+
16
+ - <An implementation decision for this feature.>
17
+
18
+ ## Testing Decisions
19
+
20
+ - <A testing decision for this feature.>
21
+
22
+ ## Out of Scope
23
+
24
+ - <Work that this PRD does not cover.>
25
+
26
+ ## Further Notes
27
+
28
+ <Additional information for this feature.>
29
+ ```
@@ -0,0 +1,21 @@
1
+ # Project Recipe
2
+
3
+ Use this recipe for a project record body.
4
+
5
+ ```markdown
6
+ ## Purpose
7
+
8
+ <The durable purpose of this project.>
9
+
10
+ ## Scope
11
+
12
+ - <Work that this project includes.>
13
+
14
+ ## Success Conditions
15
+
16
+ - <A condition that shows the project is complete.>
17
+
18
+ ## Non-Goals
19
+
20
+ - <Work that this project does not include.>
21
+ ```
@@ -0,0 +1,15 @@
1
+ # User Story Recipe
2
+
3
+ Use this recipe for a user-story record body.
4
+
5
+ ```markdown
6
+ As an <actor>, I want a <feature>, so that <benefit>.
7
+
8
+ ## Acceptance Criteria
9
+
10
+ - <An observable result that shows the story is complete.>
11
+
12
+ ## Boundaries
13
+
14
+ - <A limit that applies to this story.>
15
+ ```
@@ -0,0 +1,13 @@
1
+ # Version Recipe
2
+
3
+ Use this recipe for a version record body.
4
+
5
+ ```markdown
6
+ ## Release Intent
7
+
8
+ <The purpose and intended outcome of this release.>
9
+
10
+ ## Compatibility and Migration Notes
11
+
12
+ - <Compatibility effect or migration work for this release.>
13
+ ```
@@ -0,0 +1,25 @@
1
+ # Wayfinder Map Recipe
2
+
3
+ Use this recipe for the canonical Wayfinder issue under an initiative. It is an index for the route to a destination and has child decision tickets.
4
+
5
+ ```markdown
6
+ ## Destination
7
+
8
+ <What reaching the end of this map looks like.>
9
+
10
+ ## Notes
11
+
12
+ <Domain, applicable skills, and standing preferences.>
13
+
14
+ ## Decisions so far
15
+
16
+ - [<Closed ticket title>](<link>) - <One-line gist of the answer.>
17
+
18
+ ## Not yet specified
19
+
20
+ <In-scope questions that cannot yet be stated as tickets.>
21
+
22
+ ## Out of scope
23
+
24
+ <Work ruled out of this map.>
25
+ ```
@@ -0,0 +1,17 @@
1
+ # Wayfinder Ticket Recipe
2
+
3
+ Use this recipe for a child issue of a Wayfinder map. A ticket resolves one decision or investigation.
4
+
5
+ ```markdown
6
+ ## Ticket type
7
+
8
+ <research | prototype | grilling | task>
9
+
10
+ ## Question
11
+
12
+ <The decision or investigation this ticket resolves.>
13
+
14
+ ## Resolution
15
+
16
+ <Leave empty until the ticket is done.>
17
+ ```