@ozerohax/assistagents 0.1.1 → 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 (184) hide show
  1. package/LICENSE +221 -0
  2. package/README.md +24 -75
  3. package/dist/cli.js +613 -146
  4. package/dist/cli.js.map +1 -1
  5. package/package.json +2 -2
  6. package/templates/agents/ask.md +85 -0
  7. package/templates/agents/assist/creator/decomposition.md +53 -0
  8. package/templates/agents/assist/research/code.md +45 -0
  9. package/templates/agents/assist/research/web.md +39 -0
  10. package/templates/agents/build/dev.md +140 -123
  11. package/templates/agents/build/planner.md +123 -0
  12. package/templates/agents/doc.md +108 -0
  13. package/templates/agents/project.md +122 -0
  14. package/templates/agents/review.md +101 -0
  15. package/templates/agents/test.md +116 -0
  16. package/templates/commands/init-agent-assist-code.md +92 -0
  17. package/templates/skills/README.md +165 -0
  18. package/templates/skills/coder/frontend/design/SKILL.md +72 -0
  19. package/templates/skills/coder/frontend/ui-ux/SKILL.md +84 -0
  20. package/templates/skills/coder/rules/clean-code/SKILL.md +70 -0
  21. package/templates/skills/coder/rules/debug-requirements/SKILL.md +67 -0
  22. package/templates/skills/coder/rules/requirements/SKILL.md +75 -0
  23. package/templates/skills/coder/system-design/api-design/SKILL.md +68 -0
  24. package/templates/skills/coder/system-design/db-schema/SKILL.md +73 -0
  25. package/templates/skills/coder/system-design/external-api/SKILL.md +71 -0
  26. package/templates/skills/coder/system-design/perf-patterns/SKILL.md +66 -0
  27. package/templates/skills/coder/system-design/security/SKILL.md +68 -0
  28. package/templates/skills/coder/system-design/testable-code/SKILL.md +66 -0
  29. package/templates/skills/docs/changelog/SKILL.md +10 -0
  30. package/templates/skills/docs/dev-plan/SKILL.md +10 -0
  31. package/templates/skills/docs/diagram-gen/SKILL.md +10 -0
  32. package/templates/skills/docs/guide/SKILL.md +10 -0
  33. package/templates/skills/docs/project/arch/SKILL.md +10 -0
  34. package/templates/skills/docs/project/brief/SKILL.md +10 -0
  35. package/templates/skills/docs/project/epic/SKILL.md +10 -0
  36. package/templates/skills/docs/project/personals/SKILL.md +10 -0
  37. package/templates/skills/docs/project/prd/SKILL.md +10 -0
  38. package/templates/skills/docs/project/research-summary/SKILL.md +10 -0
  39. package/templates/skills/docs/project/status/SKILL.md +10 -0
  40. package/templates/skills/docs/project/task/SKILL.md +10 -0
  41. package/templates/skills/docs/project/use-case/SKILL.md +10 -0
  42. package/templates/skills/docs/report/bug-reporting/SKILL.md +10 -0
  43. package/templates/skills/docs/report/test-reporting/SKILL.md +10 -0
  44. package/templates/skills/planning/approach-selection/SKILL.md +32 -0
  45. package/templates/skills/planning/base/SKILL.md +57 -0
  46. package/templates/skills/planning/change-inventory/SKILL.md +31 -0
  47. package/templates/skills/planning/estimation/SKILL.md +38 -0
  48. package/templates/skills/planning/impact-analysis/SKILL.md +34 -0
  49. package/templates/skills/planning/migration-strategy/SKILL.md +42 -0
  50. package/templates/skills/planning/monitoring-checks/SKILL.md +34 -0
  51. package/templates/skills/planning/requirements-extraction/SKILL.md +42 -0
  52. package/templates/skills/planning/risk-assessment/SKILL.md +42 -0
  53. package/templates/skills/planning/rollback-mechanism/SKILL.md +40 -0
  54. package/templates/skills/planning/rollout-strategy/SKILL.md +33 -0
  55. package/templates/skills/planning/scope-definition/SKILL.md +33 -0
  56. package/templates/skills/planning/scope-minimization/SKILL.md +40 -0
  57. package/templates/skills/planning/task-classifier/SKILL.md +74 -0
  58. package/templates/skills/planning/testing-strategy/SKILL.md +34 -0
  59. package/templates/skills/project/discovery/mode-selector/SKILL.md +75 -0
  60. package/templates/skills/project/fast/init/SKILL.md +52 -0
  61. package/templates/skills/project/fast/proto-spec/SKILL.md +60 -0
  62. package/templates/skills/project/fast/pulse-scan/SKILL.md +54 -0
  63. package/templates/skills/project/fast/stack-pick/SKILL.md +53 -0
  64. package/templates/skills/project/fast/status/SKILL.md +114 -0
  65. package/templates/skills/project/fast/task-blast/SKILL.md +54 -0
  66. package/templates/skills/project/standart/arch/SKILL.md +49 -0
  67. package/templates/skills/project/standart/brief/SKILL.md +48 -0
  68. package/templates/skills/project/standart/decomposition/SKILL.md +49 -0
  69. package/templates/skills/project/standart/epic/SKILL.md +47 -0
  70. package/templates/skills/project/standart/personas/SKILL.md +46 -0
  71. package/templates/skills/project/standart/proj-description/SKILL.md +52 -0
  72. package/templates/skills/project/standart/research/SKILL.md +49 -0
  73. package/templates/skills/project/standart/status/SKILL.md +51 -0
  74. package/templates/skills/project/standart/usecases/SKILL.md +47 -0
  75. package/templates/skills/review/arch/consistency/SKILL.md +39 -0
  76. package/templates/skills/review/arch/full-check/SKILL.md +46 -0
  77. package/templates/skills/review/code/checklist/SKILL.md +39 -0
  78. package/templates/skills/review/code/idiom-check/SKILL.md +38 -0
  79. package/templates/skills/review/code/maintain/SKILL.md +40 -0
  80. package/templates/skills/review/code/performance/SKILL.md +41 -0
  81. package/templates/skills/review/code/requirements/SKILL.md +39 -0
  82. package/templates/skills/review/code/security/SKILL.md +41 -0
  83. package/templates/skills/review/code/strategy/SKILL.md +50 -0
  84. package/templates/skills/review/doc/quality/SKILL.md +39 -0
  85. package/templates/skills/review/doc/strategy/SKILL.md +46 -0
  86. package/templates/skills/shared/base-rules/SKILL.md +28 -0
  87. package/templates/skills/shared/docs-paths/SKILL.md +97 -0
  88. package/templates/skills/task-use/creator/decomposition-strategy/SKILL.md +88 -0
  89. package/templates/skills/task-use/research/code-strategy/SKILL.md +80 -0
  90. package/templates/skills/task-use/research/context-strategy/SKILL.md +80 -0
  91. package/templates/skills/task-use/research/web-strategy/SKILL.md +80 -0
  92. package/templates/skills/testing/a11y/SKILL.md +51 -0
  93. package/templates/skills/testing/api-manual/SKILL.md +65 -0
  94. package/templates/skills/testing/aqa/SKILL.md +58 -0
  95. package/templates/skills/testing/browser-manual/SKILL.md +76 -0
  96. package/templates/skills/testing/checklist/SKILL.md +55 -0
  97. package/templates/skills/testing/contract/SKILL.md +55 -0
  98. package/templates/skills/testing/e2e-flow/SKILL.md +55 -0
  99. package/templates/skills/testing/load/SKILL.md +59 -0
  100. package/templates/skills/testing/mobile/SKILL.md +66 -0
  101. package/templates/skills/testing/security/SKILL.md +51 -0
  102. package/templates/skills/testing/test-case/SKILL.md +59 -0
  103. package/templates/skills/testing/visual-regression/SKILL.md +57 -0
  104. package/templates/tools/hashedit.ts +834 -0
  105. package/templates/tools/hashgrep.ts +406 -0
  106. package/templates/tools/hashread.ts +161 -0
  107. package/templates/tools/text-file.ts +199 -0
  108. package/templates/agents/ask/ask.md +0 -126
  109. package/templates/agents/assist/research/code-research.md +0 -116
  110. package/templates/agents/assist/research/web-research.md +0 -105
  111. package/templates/agents/planning/plan.md +0 -103
  112. package/templates/agents/planning/project.md +0 -122
  113. package/templates/agents/review/reviewer.md +0 -121
  114. package/templates/agents/test/tester.md +0 -170
  115. package/templates/skills/coder/csharp/coder-csharp-aspnetcore-api/SKILL.md +0 -352
  116. package/templates/skills/coder/csharp/coder-csharp-async-concurrency/SKILL.md +0 -63
  117. package/templates/skills/coder/csharp/coder-csharp-conventions/SKILL.md +0 -405
  118. package/templates/skills/coder/csharp/coder-csharp-efcore-config/SKILL.md +0 -384
  119. package/templates/skills/coder/csharp/coder-csharp-efcore-queries/SKILL.md +0 -434
  120. package/templates/skills/coder/csharp/coder-csharp-error-handling/SKILL.md +0 -354
  121. package/templates/skills/coder/csharp/coder-csharp-logging/SKILL.md +0 -362
  122. package/templates/skills/coder/csharp/coder-csharp-performance/SKILL.md +0 -71
  123. package/templates/skills/coder/csharp/coder-csharp-security/SKILL.md +0 -57
  124. package/templates/skills/coder/csharp/coder-csharp-testing/SKILL.md +0 -398
  125. package/templates/skills/coder/rust/coder-rust-async-concurrency/SKILL.md +0 -63
  126. package/templates/skills/coder/rust/coder-rust-axum-api/SKILL.md +0 -104
  127. package/templates/skills/coder/rust/coder-rust-conventions/SKILL.md +0 -57
  128. package/templates/skills/coder/rust/coder-rust-error-handling/SKILL.md +0 -56
  129. package/templates/skills/coder/rust/coder-rust-logging/SKILL.md +0 -69
  130. package/templates/skills/coder/rust/coder-rust-performance/SKILL.md +0 -51
  131. package/templates/skills/coder/rust/coder-rust-security/SKILL.md +0 -49
  132. package/templates/skills/coder/rust/coder-rust-serde/SKILL.md +0 -61
  133. package/templates/skills/coder/rust/coder-rust-sqlx-config/SKILL.md +0 -54
  134. package/templates/skills/coder/rust/coder-rust-sqlx-queries/SKILL.md +0 -66
  135. package/templates/skills/coder/rust/coder-rust-testing/SKILL.md +0 -52
  136. package/templates/skills/coder/rust/coder-rust-tokio/SKILL.md +0 -69
  137. package/templates/skills/coder/rust/coder-rust-tower-http/SKILL.md +0 -56
  138. package/templates/skills/coder/typescript/coder-typescript-async-concurrency/SKILL.md +0 -73
  139. package/templates/skills/coder/typescript/coder-typescript-conventions/SKILL.md +0 -156
  140. package/templates/skills/coder/typescript/coder-typescript-error-handling/SKILL.md +0 -126
  141. package/templates/skills/coder/typescript/coder-typescript-logging/SKILL.md +0 -107
  142. package/templates/skills/coder/typescript/coder-typescript-performance/SKILL.md +0 -83
  143. package/templates/skills/coder/typescript/coder-typescript-security/SKILL.md +0 -78
  144. package/templates/skills/coder/typescript/coder-typescript-testing/SKILL.md +0 -111
  145. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-composables/SKILL.md +0 -57
  146. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-core/SKILL.md +0 -65
  147. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-performance/SKILL.md +0 -48
  148. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-primevue/SKILL.md +0 -140
  149. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-primevue/scripts/primevue-docs.js +0 -502
  150. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-reactivity/SKILL.md +0 -61
  151. package/templates/skills/coder/typescript/coder-typescript-vuejs/coder-typescript-vuejs-testing/SKILL.md +0 -63
  152. package/templates/skills/planning/code/planning-code-feature/SKILL.md +0 -148
  153. package/templates/skills/planning/code/planning-code-fix/SKILL.md +0 -207
  154. package/templates/skills/planning/project/fast/planning-project-fast-delivery-deploy/SKILL.md +0 -33
  155. package/templates/skills/planning/project/fast/planning-project-fast-intake-questions/SKILL.md +0 -82
  156. package/templates/skills/planning/project/fast/planning-project-fast-mvp-slicing/SKILL.md +0 -36
  157. package/templates/skills/planning/project/fast/planning-project-fast-output-template/SKILL.md +0 -79
  158. package/templates/skills/planning/project/fast/planning-project-fast-session-plan/SKILL.md +0 -30
  159. package/templates/skills/planning/project/shared/planning-project-acceptance-criteria/SKILL.md +0 -46
  160. package/templates/skills/planning/project/shared/planning-project-artifact-storage/SKILL.md +0 -68
  161. package/templates/skills/planning/project/shared/planning-project-checkpoints-approval/SKILL.md +0 -24
  162. package/templates/skills/planning/project/shared/planning-project-save-revision/SKILL.md +0 -33
  163. package/templates/skills/planning/project/shared/planning-project-scope-control/SKILL.md +0 -30
  164. package/templates/skills/planning/project/shared/planning-project-success-metric-scope/SKILL.md +0 -41
  165. package/templates/skills/planning/project/shared/planning-project-task-decomposition/SKILL.md +0 -47
  166. package/templates/skills/planning/project/shared/planning-project-testing-validation/SKILL.md +0 -31
  167. package/templates/skills/planning/project/standard/planning-project-standard-architecture-adr-lite/SKILL.md +0 -68
  168. package/templates/skills/planning/project/standard/planning-project-standard-epics-stories/SKILL.md +0 -41
  169. package/templates/skills/planning/project/standard/planning-project-standard-implementation-readiness-lite/SKILL.md +0 -32
  170. package/templates/skills/planning/project/standard/planning-project-standard-prd-fr-nfr/SKILL.md +0 -60
  171. package/templates/skills/planning/project/standard/planning-project-standard-product-brief/SKILL.md +0 -46
  172. package/templates/skills/planning/project/standard/planning-project-standard-story-to-tasks/SKILL.md +0 -52
  173. package/templates/skills/research-strategy/research-strategy-code/SKILL.md +0 -80
  174. package/templates/skills/research-strategy/research-strategy-web/SKILL.md +0 -63
  175. package/templates/skills/review/review-checklists/SKILL.md +0 -57
  176. package/templates/skills/review/review-requirements/SKILL.md +0 -42
  177. package/templates/skills/review/review-strategy/SKILL.md +0 -120
  178. package/templates/skills/testing/testing-api-manual/SKILL.md +0 -535
  179. package/templates/skills/testing/testing-automation-web/SKILL.md +0 -81
  180. package/templates/skills/testing/testing-browser-manual/SKILL.md +0 -528
  181. package/templates/skills/testing/testing-checklists/SKILL.md +0 -434
  182. package/templates/skills/testing/testing-strategy/SKILL.md +0 -471
  183. package/templates/skills/testing/testing-test-cases/SKILL.md +0 -362
  184. package/templates/skills/testing/testing-triage-bugs/SKILL.md +0 -457
package/LICENSE ADDED
@@ -0,0 +1,221 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+
18
+ "Legal Entity" shall mean the union of the acting entity and all
19
+ other entities that control, are controlled by, or are under common
20
+ control with that entity. For the purposes of this definition,
21
+ "control" means (i) the power, direct or indirect, to cause the
22
+ direction or management of such entity, whether by contract or
23
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
24
+ outstanding shares, or (iii) beneficial ownership of such entity.
25
+
26
+
27
+ "You" (or "Your") shall mean an individual or Legal Entity
28
+ exercising permissions granted by this License.
29
+
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+
36
+ "Object" form shall mean any form resulting from mechanical
37
+ transformation or translation of a Source form, including but
38
+ not limited to compiled object code, generated documentation,
39
+ and conversions to other media types.
40
+
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+
56
+ "Contribution" shall mean any work of authorship, including
57
+ the original version of the Work and any modifications or additions
58
+ to that Work or Derivative Works thereof, that is intentionally
59
+ submitted to Licensor for inclusion in the Work by the copyright owner
60
+ or by an individual or Legal Entity authorized to submit on behalf of
61
+ the copyright owner. For the purposes of this definition, "submitted"
62
+ means any form of electronic, verbal, or written communication sent
63
+ to the Licensor or its representatives, including but not limited to
64
+ communication on electronic mailing lists, source code control systems,
65
+ and issue tracking systems that are managed by, or on behalf of, the
66
+ Licensor for the purpose of discussing and improving the Work, but
67
+ excluding communication that is conspicuously marked or otherwise
68
+ designated in writing by the copyright owner as "Not a Contribution."
69
+
70
+ "Contributor" shall mean Licensor and any individual or Legal Entity
71
+ on behalf of whom a Contribution has been received by Licensor and
72
+ subsequently incorporated within the Work.
73
+
74
+
75
+ 2. Grant of Copyright License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ copyright license to reproduce, prepare Derivative Works of,
79
+ publicly display, publicly perform, sublicense, and distribute the
80
+ Work and such Derivative Works in Source or Object form.
81
+
82
+
83
+ 3. Grant of Patent License. Subject to the terms and conditions of
84
+ this License, each Contributor hereby grants to You a perpetual,
85
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
86
+ (except as stated in this section) patent license to make, have made,
87
+ use, offer to sell, sell, import, and otherwise transfer the Work,
88
+ where such license applies only to those patent claims licensable
89
+ by such Contributor that are necessarily infringed by their
90
+ Contribution(s) alone or by combination of their Contribution(s)
91
+ with the Work to which such Contribution(s) was submitted. If You
92
+ institute patent litigation against any entity (including a
93
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
94
+ or a Contribution incorporated within the Work constitutes direct
95
+ or contributory patent infringement, then any patent licenses
96
+ granted to You under this License for that Work shall terminate
97
+ as of the date such litigation is filed.
98
+
99
+
100
+ 4. Redistribution. You may reproduce and distribute copies of the
101
+ Work or Derivative Works thereof in any medium, with or without
102
+ modifications, and in Source or Object form, provided that You
103
+ meet the following conditions:
104
+
105
+ (a) You must give any other recipients of the Work or
106
+ Derivative Works a copy of this License; and
107
+
108
+ (b) You must cause any modified files to carry prominent notices
109
+ stating that You changed the files; and
110
+
111
+ (c) You must retain, in the Source form of any Derivative Works
112
+ that You distribute, all copyright, patent, trademark, and
113
+ attribution notices from the Source form of the Work,
114
+ excluding those notices that do not pertain to any part of
115
+ the Derivative Works; and
116
+
117
+ (d) If the Work includes a "NOTICE" text file as part of its
118
+ distribution, then any Derivative Works that You distribute must
119
+ include a readable copy of the attribution notices contained
120
+ within such NOTICE file, excluding those notices that do not
121
+ pertain to any part of the Derivative Works, in at least one
122
+ of the following places: within a NOTICE text file distributed
123
+ as part of the Derivative Works; within the Source form or
124
+ documentation, if provided along with the Derivative Works; or,
125
+ within a display generated by the Derivative Works, if and
126
+ wherever such third-party notices normally appear. The contents
127
+ of the NOTICE file are for informational purposes only and
128
+ do not modify the License. You may add Your own attribution
129
+ notices within Derivative Works that You distribute, alongside
130
+ or as an addendum to the NOTICE text from the Work, provided
131
+ that such additional attribution notices cannot be construed
132
+ as modifying the License.
133
+
134
+
135
+ You may add Your own copyright statement to Your modifications and
136
+ may provide additional or different license terms and conditions
137
+ for use, reproduction, or distribution of Your modifications, or
138
+ for any such Derivative Works as a whole, provided Your use,
139
+ reproduction, and distribution of the Work otherwise complies with
140
+ the conditions stated in this License.
141
+
142
+
143
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
144
+ any Contribution intentionally submitted for inclusion in the Work
145
+ by You to the Licensor shall be under the terms and conditions of
146
+ this License, without any additional terms or conditions.
147
+ Notwithstanding the above, nothing herein shall supersede or modify
148
+ the terms of any separate license agreement you may have executed
149
+ with Licensor regarding such Contributions.
150
+
151
+
152
+ 6. Trademarks. This License does not grant permission to use the trade
153
+ names, trademarks, service marks, or product names of the Licensor,
154
+ except as required for reasonable and customary use in describing the
155
+ origin of the Work and reproducing the content of the NOTICE file.
156
+
157
+
158
+ 7. Disclaimer of Warranty. Unless required by applicable law or
159
+ agreed to in writing, Licensor provides the Work (and each
160
+ Contributor provides its Contributions) on an "AS IS" BASIS,
161
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
162
+ implied, including, without limitation, any warranties or conditions
163
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
164
+ PARTICULAR PURPOSE. You are solely responsible for determining the
165
+ appropriateness of using or redistributing the Work and assume any
166
+ risks associated with Your exercise of permissions under this License.
167
+
168
+
169
+ 8. Limitation of Liability. In no event and under no legal theory,
170
+ whether in tort (including negligence), contract, or otherwise,
171
+ unless required by applicable law (such as deliberate and grossly
172
+ negligent acts) or agreed to in writing, shall any Contributor be
173
+ liable to You for damages, including any direct, indirect, special,
174
+ incidental, or consequential damages of any character arising as a
175
+ result of this License or out of the use or inability to use the
176
+ Work (including but not limited to damages for loss of goodwill,
177
+ work stoppage, computer failure or malfunction, or any and all
178
+ other commercial damages or losses), even if such Contributor
179
+ has been advised of the possibility of such damages.
180
+
181
+
182
+ 9. Accepting Warranty or Additional Liability. While redistributing
183
+ the Work or Derivative Works thereof, You may choose to offer,
184
+ and charge a fee for, acceptance of support, warranty, indemnity,
185
+ or other liability obligations and/or rights consistent with this
186
+ License. However, in accepting such obligations, You may act only
187
+ on Your own behalf and on Your sole responsibility, not on behalf
188
+ of any other Contributor, and only if You agree to indemnify,
189
+ defend, and hold each Contributor harmless for any liability
190
+ incurred by, or claims asserted against, such Contributor by reason
191
+ of your accepting any such warranty or additional liability.
192
+
193
+
194
+ END OF TERMS AND CONDITIONS
195
+
196
+ APPENDIX: How to apply the Apache License to your work.
197
+
198
+
199
+ To apply the Apache License to your work, attach the following
200
+ boilerplate notice, with the fields enclosed by brackets "[]"
201
+ replaced with your own identifying information. (Don't include
202
+ the brackets!) The text should be enclosed in the appropriate
203
+ comment syntax for the file format. We also recommend that a
204
+ file or class name and description of purpose be included on the
205
+ same "printed page" as the copyright notice for easier
206
+ identification within third-party archives.
207
+
208
+
209
+ Copyright [yyyy] [name of copyright owner]
210
+
211
+ Licensed under the Apache License, Version 2.0 (the "License");
212
+ you may not use this file except in compliance with the License.
213
+ You may obtain a copy of the License at
214
+
215
+ http://www.apache.org/licenses/LICENSE-2.0
216
+
217
+ Unless required by applicable law or agreed to in writing, software
218
+ distributed under the License is distributed on an "AS IS" BASIS,
219
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
220
+ See the License for the specific language governing permissions and
221
+ limitations under the License.
package/README.md CHANGED
@@ -1,90 +1,39 @@
1
+ ![Banner](banner.jpeg)
1
2
 
2
- Набор готовых агентов и skills для AI‑ассистированного кодинга в OpenCode: от быстрого “вайб‑прототипа” до аккуратной реализации с планированием, тестированием и ревью.
3
- Пак ставит в `~/.opencode/`:
4
- - `agents/` — роли (build/dev, planning, review, test, ask + research сабагенты)
5
- - `skills/` — плейбуки (planning/review/testing/research + coder skills по языкам)
6
- - `keys/` и `opencode.jsonc` — хранение ключей и глобальная конфигурация
7
- Главная идея: ты говоришь “что хочу получить”, агент ведёт процесс и соблюдает правила (skills/Context7/LSP), а ты управляешь итерациями “сгенерировал → запустил → исправил → проверил”.
3
+ OpenCode AssistAgents is a ready-to-use agent pack for OpenCode users, built by a developer for developers who want tighter control over what agents do.
4
+ It installs practical agents, skills, and optional integrations so you can run a clear delivery loop: plan -> implement -> test -> review.
8
5
 
9
- ВАЖНО! Это первая тестовая версия, если что не так - welcome to issue/pr
6
+ > [!WARNING]
7
+ > Early version: expect occasional rough edges. If you hit one, please open an issue/PR.
10
8
 
9
+ ## Install / update
11
10
 
12
- ### Quickstart
13
- 1) Скажи цель одной фразой: что сделать + ограничения + критерий готовности.
14
- 2) Запусти `planning/plan`: попроси краткий план, список файлов, риски, что тестировать.
15
- 3) Запусти `build/dev`: реализуй по плану, минимальными правками, без "улучшим всё рядом".
16
- 4) Запусти проект/сборку локально, собери ошибку/лог.
17
- 5) Вставь ошибку в `build/dev` (как есть) и попроси минимальный фикс + объяснение причины.
18
- 6) Запусти `test/tester`: попроси покрыть критерии готовности тестами/ручной проверкой.
19
- 7) Запусти `review/reviewer`: пусть проверит correctness/security/tests и точки риска.
20
- 8) Повтори короткий круг `build/dev → test → review`, пока не станет скучно.
21
-
22
- ### Как выбирать агента (в двух словах)
23
- - `build/dev` — когда нужно менять код (фича/фикс/рефактор).
24
- - `planning/plan` — когда задача мутная или хочется минимизировать риск до правок.
25
- - `review/reviewer` — когда уже есть изменения и нужно понять, не наделали ли бед.
26
- - `test/tester` — когда нужно проверить руками/через API/браузер, особенно после правок.
27
- - `ask/ask` — когда вопрос “где/что/почему” и хочется быстрый ответ или делегацию в research.
28
-
29
- ### Важно: чего не делать
30
- - Не вставляй ключи/токены/PII в промпты и в репозиторий; ключи храни в `~/.opencode/keys/`.
31
- - Не тащи "Accept All" в прод: для high-risk зон (auth/payments/migrations/public APIs/deploy) всегда `planning → build/dev → test → review`.
32
- - Context7 используй для публичной документации/примеров, а не для секретов.
33
- - LSP/диагностику не игнорируй: тип-ошибки/линт/тесты должны давать чистый сигнал.
34
-
35
- ## Установка / обновление
11
+ Requirements: Node.js >= 18.
36
12
 
37
13
  ```bash
38
- npx @ozerohax/assistagents
14
+ npx @ozerohax/assistagents@latest
39
15
  ```
40
16
 
41
- В TUI ты:
42
-
43
- - выбираешь языки, для которых поставить `skills/coder/*` (сейчас: TypeScript, Rust, C#)
44
- - решаешь, делать ли zip-бэкап и куда его класть
45
- - вводишь/обновляешь ключи (если файл ключа пустой — спросит; если заполнен — спросит, оставить или перезаписать)
46
-
47
- ## Что именно устанавливается
48
-
49
- Целевая структура:
50
-
51
- - `~/.opencode/agents/` — описания агентов (YAML frontmatter + инструкции)
52
- - `~/.opencode/skills/` — skills (структурированные инструкции/плейбуки)
53
- - `~/.opencode/keys/` — ключи провайдеров (файлы)
54
- - `~/.opencode/opencode.jsonc` — глобальный конфиг OpenCode, который ссылается на ключи
55
-
56
- ## Агенты (templates/agents)
17
+ Run the same command again any time to update to the latest version.
57
18
 
58
- В пакете есть несколько «ролей», которые подхватываются OpenCode:
19
+ Full documentation:
59
20
 
60
- - `build/dev` — основной агент для имплементации/рефакторинга/фиксов. Перед правками обязан подгружать релевантные skills, при необходимости пользоваться Context7 (внешние либы) и LSP (переходы/диагностика). Для неоднозначностей — вопросы только через `question` tool.
61
- - `planning/plan` — планировщик (read-only): исследует репозиторий и пишет план, но не редактирует файлы. План может сохранять только в `/ai-docs/plan/` и только после явного подтверждения.
62
- - `planning/project` — планировщик проекта (read-only): делает быстрый/стандартный план по продукту/проекту; если режим не задан — обязан спросить через `question` tool.
63
- - `review/reviewer` — агент код-ревью: работает по review skills (стратегия + чеклисты), фокус на correctness/security/tests, формат «Conventional Comments».
64
- - `test/tester` — агент ручного тестирования API/браузера: собирает сценарии, использует curl/DevTools (в зависимости от окружения) и документирует результаты; опасные запросы/действия подтверждает через `question` tool.
65
- - `ask/ask` — «спроси о чём угодно»: отвечает на вопросы, выбирая режим (свои инструменты vs сабагенты). Для сложного анализа может делегировать в `assist/research/*`.
66
- - `assist/research/code-research` — сабагент для локального code research (read-only, с обязательной доказательной базой: файлы/строки).
67
- - `assist/research/web-research` — сабагент для web research (поиск/выгрузка страниц; подходит для актуальной документации/примеров).
21
+ - [English](./doc/en/README.md)
22
+ - [Russian](./doc/ru/README.md)
23
+ - [Chinese](./doc/zh/README.md) - automatic translation, not verified
68
24
 
69
- ## Skills (templates/skills)
25
+ Main agent IDs:
70
26
 
71
- Skills это «плейбуки», которые агенты обязаны подгружать перед работой (в зависимости от задачи).
27
+ - `build/dev` - code implementation, fixes, and step-by-step verification.
28
+ - `build/planner` - read-only implementation planning.
29
+ - `test` - testing plus test-report and bug-report artifacts.
30
+ - `review` - read-only code review and risk assessment.
31
+ - `doc` - user/operational documentation in the allowed docs scope.
32
+ - `project` - project management agent: planning, decomposition, and project artifact maintenance.
33
+ - `ask` - quick questions and research without edits.
72
34
 
73
- Основные группы:
35
+ Recommended loop: `build/planner -> build/dev -> test -> review`.
74
36
 
75
- - `planning/code/*` — планирование изменений в коде:
76
- - `planning-code-feature` — как планировать фичи (scope → декомпозиция → план реализации/тестирования)
77
- - `planning-code-fix` — как планировать фиксы/баги (repro → root cause → безопасный fix + тест-план)
78
- - `planning/project/*` — планирование проекта/продукта (fast/standard + общие shared навыки)
79
- - `research-strategy/*` — как правильно формулировать запросы для сабагентов:
80
- - `research-strategy-code`
81
- - `research-strategy-web`
82
- - `review/*` — стратегия ревью и чеклисты:
83
- - `review-strategy`, `review-checklists`, `review-requirements`
84
- - `testing/*` — стратегия ручного тестирования, чеклисты, тест-кейсы, triage багов, web-автоматизация
85
- - `coder/<language>/*` — языковые best practices (ставятся по выбору в TUI):
86
- - TypeScript: conventions, error-handling, logging, performance, security, async, testing + Vue 3 skills (core/reactivity/composables/performance/testing/PrimeVue)
87
- - Rust: conventions, error-handling, logging, performance, security, async, testing + Axum/Tokio/Serde/SQLx/Tower
88
- - C#: conventions, error-handling, logging, performance, security, async, testing + ASP.NET Core API + EF Core
37
+ ---
89
38
 
90
- Примечание: если под конкретную технологию skill отсутствует, агент должен явно это отметить и действовать осторожно.
39
+ OpenCode is a trademark of its respective owner. This project is not affiliated with or endorsed by OpenCode.