omakaseagent 0.1.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 (187) hide show
  1. package/LICENSE +182 -0
  2. package/OMAKASE-CRITIQUE.md +12 -0
  3. package/OMAKASE-PRINCIPLES.md +15 -0
  4. package/OMAKASE-RULES.md +25 -0
  5. package/README.md +96 -0
  6. package/bin/omakase.js +571 -0
  7. package/dist/agents/.agents/skills/omakase/OMAKASE-CRITIQUE.md +12 -0
  8. package/dist/agents/.agents/skills/omakase/OMAKASE-PRINCIPLES.md +15 -0
  9. package/dist/agents/.agents/skills/omakase/OMAKASE-RULES.md +25 -0
  10. package/dist/agents/.agents/skills/omakase/SKILL.md +177 -0
  11. package/dist/agents/.agents/skills/omakase/TEAMS.md +120 -0
  12. package/dist/agents/.agents/skills/omakase/core/omakase-core.md +43 -0
  13. package/dist/agents/.agents/skills/omakase/reference/archivist-workflows.md +178 -0
  14. package/dist/agents/.agents/skills/omakase/reference/backlog-audit.md +168 -0
  15. package/dist/agents/.agents/skills/omakase/reference/critique.md +92 -0
  16. package/dist/agents/.agents/skills/omakase/reference/dark-factory.md +111 -0
  17. package/dist/agents/.agents/skills/omakase/reference/engineering.md +137 -0
  18. package/dist/agents/.agents/skills/omakase/reference/execution-plan.md +159 -0
  19. package/dist/agents/.agents/skills/omakase/reference/factory-orchestration.md +123 -0
  20. package/dist/agents/.agents/skills/omakase/reference/handoff.md +43 -0
  21. package/dist/agents/.agents/skills/omakase/reference/init.md +146 -0
  22. package/dist/agents/.agents/skills/omakase/reference/learn.md +66 -0
  23. package/dist/agents/.agents/skills/omakase/reference/native-agents.md +45 -0
  24. package/dist/agents/.agents/skills/omakase/reference/plan.md +79 -0
  25. package/dist/agents/.agents/skills/omakase/reference/skill-judge.md +133 -0
  26. package/dist/agents/.agents/skills/omakase/reference/task-intake.md +94 -0
  27. package/dist/agents/.agents/skills/omakase/reference/taste.md +33 -0
  28. package/dist/agents/.agents/skills/omakase/reference/team-architecture.md +38 -0
  29. package/dist/agents/.agents/skills/omakase/teams/archives/lead.md +77 -0
  30. package/dist/agents/.agents/skills/omakase/teams/archives/sub-personas/memory-synthesizer.md +66 -0
  31. package/dist/agents/.agents/skills/omakase/teams/critics/lead.md +94 -0
  32. package/dist/agents/.agents/skills/omakase/teams/critics/sub-personas/deslop-critic.md +52 -0
  33. package/dist/agents/.agents/skills/omakase/teams/critics/sub-personas/skill-judge.md +59 -0
  34. package/dist/agents/.agents/skills/omakase/teams/critics/sub-personas/structural-critic.md +112 -0
  35. package/dist/agents/.agents/skills/omakase/teams/critics/sub-personas/verification-critic.md +73 -0
  36. package/dist/agents/.agents/skills/omakase/teams/engineering/lead.md +111 -0
  37. package/dist/agents/.agents/skills/omakase/teams/engineering/sub-personas/debugger.md +44 -0
  38. package/dist/agents/.agents/skills/omakase/teams/engineering/sub-personas/implementation-lead.md +43 -0
  39. package/dist/agents/.agents/skills/omakase/teams/engineering/sub-personas/refactor-specialist.md +56 -0
  40. package/dist/agents/.agents/skills/omakase/teams/engineering/sub-personas/senior-reviewer.md +83 -0
  41. package/dist/agents/.opencode/agents/omakase-archivist.md +24 -0
  42. package/dist/agents/.opencode/agents/omakase-critic.md +32 -0
  43. package/dist/agents/.opencode/agents/omakase-debugger.md +15 -0
  44. package/dist/agents/.opencode/agents/omakase-deslop-critic.md +15 -0
  45. package/dist/agents/.opencode/agents/omakase-engineer.md +38 -0
  46. package/dist/agents/.opencode/agents/omakase-implementation-lead.md +15 -0
  47. package/dist/agents/.opencode/agents/omakase-memory-synthesizer.md +15 -0
  48. package/dist/agents/.opencode/agents/omakase-refactor-specialist.md +15 -0
  49. package/dist/agents/.opencode/agents/omakase-senior-reviewer.md +17 -0
  50. package/dist/agents/.opencode/agents/omakase-skill-judge.md +17 -0
  51. package/dist/agents/.opencode/agents/omakase-structural-critic.md +15 -0
  52. package/dist/agents/.opencode/agents/omakase-verification-critic.md +15 -0
  53. package/dist/chat/omakase/SKILL.md +84 -0
  54. package/dist/claude/.claude/agents/omakase-archivist.md +21 -0
  55. package/dist/claude/.claude/agents/omakase-critic.md +25 -0
  56. package/dist/claude/.claude/agents/omakase-engineer.md +32 -0
  57. package/dist/claude/.claude/skills/omakase/OMAKASE-CRITIQUE.md +12 -0
  58. package/dist/claude/.claude/skills/omakase/OMAKASE-PRINCIPLES.md +15 -0
  59. package/dist/claude/.claude/skills/omakase/OMAKASE-RULES.md +25 -0
  60. package/dist/claude/.claude/skills/omakase/SKILL.md +177 -0
  61. package/dist/claude/.claude/skills/omakase/TEAMS.md +120 -0
  62. package/dist/claude/.claude/skills/omakase/core/omakase-core.md +43 -0
  63. package/dist/claude/.claude/skills/omakase/reference/archivist-workflows.md +178 -0
  64. package/dist/claude/.claude/skills/omakase/reference/backlog-audit.md +168 -0
  65. package/dist/claude/.claude/skills/omakase/reference/critique.md +92 -0
  66. package/dist/claude/.claude/skills/omakase/reference/dark-factory.md +111 -0
  67. package/dist/claude/.claude/skills/omakase/reference/engineering.md +137 -0
  68. package/dist/claude/.claude/skills/omakase/reference/execution-plan.md +159 -0
  69. package/dist/claude/.claude/skills/omakase/reference/factory-orchestration.md +123 -0
  70. package/dist/claude/.claude/skills/omakase/reference/handoff.md +43 -0
  71. package/dist/claude/.claude/skills/omakase/reference/init.md +146 -0
  72. package/dist/claude/.claude/skills/omakase/reference/learn.md +66 -0
  73. package/dist/claude/.claude/skills/omakase/reference/native-agents.md +45 -0
  74. package/dist/claude/.claude/skills/omakase/reference/plan.md +79 -0
  75. package/dist/claude/.claude/skills/omakase/reference/skill-judge.md +133 -0
  76. package/dist/claude/.claude/skills/omakase/reference/task-intake.md +94 -0
  77. package/dist/claude/.claude/skills/omakase/reference/taste.md +33 -0
  78. package/dist/claude/.claude/skills/omakase/reference/team-architecture.md +38 -0
  79. package/dist/claude/.claude/skills/omakase/teams/archives/lead.md +77 -0
  80. package/dist/claude/.claude/skills/omakase/teams/archives/sub-personas/memory-synthesizer.md +66 -0
  81. package/dist/claude/.claude/skills/omakase/teams/critics/lead.md +94 -0
  82. package/dist/claude/.claude/skills/omakase/teams/critics/sub-personas/deslop-critic.md +52 -0
  83. package/dist/claude/.claude/skills/omakase/teams/critics/sub-personas/skill-judge.md +59 -0
  84. package/dist/claude/.claude/skills/omakase/teams/critics/sub-personas/structural-critic.md +112 -0
  85. package/dist/claude/.claude/skills/omakase/teams/critics/sub-personas/verification-critic.md +73 -0
  86. package/dist/claude/.claude/skills/omakase/teams/engineering/lead.md +111 -0
  87. package/dist/claude/.claude/skills/omakase/teams/engineering/sub-personas/debugger.md +44 -0
  88. package/dist/claude/.claude/skills/omakase/teams/engineering/sub-personas/implementation-lead.md +43 -0
  89. package/dist/claude/.claude/skills/omakase/teams/engineering/sub-personas/refactor-specialist.md +56 -0
  90. package/dist/claude/.claude/skills/omakase/teams/engineering/sub-personas/senior-reviewer.md +83 -0
  91. package/dist/codex/.codex/agents/omakase-archivist.toml +133 -0
  92. package/dist/codex/.codex/agents/omakase-critic.toml +149 -0
  93. package/dist/codex/.codex/agents/omakase-debugger.toml +92 -0
  94. package/dist/codex/.codex/agents/omakase-deslop-critic.toml +100 -0
  95. package/dist/codex/.codex/agents/omakase-engineer.toml +167 -0
  96. package/dist/codex/.codex/agents/omakase-implementation-lead.toml +91 -0
  97. package/dist/codex/.codex/agents/omakase-memory-synthesizer.toml +114 -0
  98. package/dist/codex/.codex/agents/omakase-refactor-specialist.toml +104 -0
  99. package/dist/codex/.codex/agents/omakase-senior-reviewer.toml +127 -0
  100. package/dist/codex/.codex/agents/omakase-skill-judge.toml +106 -0
  101. package/dist/codex/.codex/agents/omakase-structural-critic.toml +160 -0
  102. package/dist/codex/.codex/agents/omakase-verification-critic.toml +121 -0
  103. package/dist/cursor/.cursor/agents/omakase-archivist.md +21 -0
  104. package/dist/cursor/.cursor/agents/omakase-critic.md +25 -0
  105. package/dist/cursor/.cursor/agents/omakase-engineer.md +32 -0
  106. package/dist/cursor/.cursor/skills/omakase/OMAKASE-CRITIQUE.md +12 -0
  107. package/dist/cursor/.cursor/skills/omakase/OMAKASE-PRINCIPLES.md +15 -0
  108. package/dist/cursor/.cursor/skills/omakase/OMAKASE-RULES.md +25 -0
  109. package/dist/cursor/.cursor/skills/omakase/SKILL.md +177 -0
  110. package/dist/cursor/.cursor/skills/omakase/TEAMS.md +120 -0
  111. package/dist/cursor/.cursor/skills/omakase/core/omakase-core.md +43 -0
  112. package/dist/cursor/.cursor/skills/omakase/reference/archivist-workflows.md +178 -0
  113. package/dist/cursor/.cursor/skills/omakase/reference/backlog-audit.md +168 -0
  114. package/dist/cursor/.cursor/skills/omakase/reference/critique.md +92 -0
  115. package/dist/cursor/.cursor/skills/omakase/reference/dark-factory.md +111 -0
  116. package/dist/cursor/.cursor/skills/omakase/reference/engineering.md +137 -0
  117. package/dist/cursor/.cursor/skills/omakase/reference/execution-plan.md +159 -0
  118. package/dist/cursor/.cursor/skills/omakase/reference/factory-orchestration.md +123 -0
  119. package/dist/cursor/.cursor/skills/omakase/reference/handoff.md +43 -0
  120. package/dist/cursor/.cursor/skills/omakase/reference/init.md +146 -0
  121. package/dist/cursor/.cursor/skills/omakase/reference/learn.md +66 -0
  122. package/dist/cursor/.cursor/skills/omakase/reference/native-agents.md +45 -0
  123. package/dist/cursor/.cursor/skills/omakase/reference/plan.md +79 -0
  124. package/dist/cursor/.cursor/skills/omakase/reference/skill-judge.md +133 -0
  125. package/dist/cursor/.cursor/skills/omakase/reference/task-intake.md +94 -0
  126. package/dist/cursor/.cursor/skills/omakase/reference/taste.md +33 -0
  127. package/dist/cursor/.cursor/skills/omakase/reference/team-architecture.md +38 -0
  128. package/dist/cursor/.cursor/skills/omakase/teams/archives/lead.md +77 -0
  129. package/dist/cursor/.cursor/skills/omakase/teams/archives/sub-personas/memory-synthesizer.md +66 -0
  130. package/dist/cursor/.cursor/skills/omakase/teams/critics/lead.md +94 -0
  131. package/dist/cursor/.cursor/skills/omakase/teams/critics/sub-personas/deslop-critic.md +52 -0
  132. package/dist/cursor/.cursor/skills/omakase/teams/critics/sub-personas/skill-judge.md +59 -0
  133. package/dist/cursor/.cursor/skills/omakase/teams/critics/sub-personas/structural-critic.md +112 -0
  134. package/dist/cursor/.cursor/skills/omakase/teams/critics/sub-personas/verification-critic.md +73 -0
  135. package/dist/cursor/.cursor/skills/omakase/teams/engineering/lead.md +111 -0
  136. package/dist/cursor/.cursor/skills/omakase/teams/engineering/sub-personas/debugger.md +44 -0
  137. package/dist/cursor/.cursor/skills/omakase/teams/engineering/sub-personas/implementation-lead.md +43 -0
  138. package/dist/cursor/.cursor/skills/omakase/teams/engineering/sub-personas/refactor-specialist.md +56 -0
  139. package/dist/cursor/.cursor/skills/omakase/teams/engineering/sub-personas/senior-reviewer.md +83 -0
  140. package/dist/grok/.grok/agents/omakase-archivist.md +25 -0
  141. package/dist/grok/.grok/agents/omakase-critic.md +28 -0
  142. package/dist/grok/.grok/agents/omakase-debugger.md +17 -0
  143. package/dist/grok/.grok/agents/omakase-deslop-critic.md +17 -0
  144. package/dist/grok/.grok/agents/omakase-engineer.md +36 -0
  145. package/dist/grok/.grok/agents/omakase-implementation-lead.md +17 -0
  146. package/dist/grok/.grok/agents/omakase-memory-synthesizer.md +17 -0
  147. package/dist/grok/.grok/agents/omakase-refactor-specialist.md +17 -0
  148. package/dist/grok/.grok/agents/omakase-senior-reviewer.md +17 -0
  149. package/dist/grok/.grok/agents/omakase-skill-judge.md +17 -0
  150. package/dist/grok/.grok/agents/omakase-structural-critic.md +17 -0
  151. package/dist/grok/.grok/agents/omakase-verification-critic.md +17 -0
  152. package/dist/grok/.grok/skills/omakase/OMAKASE-CRITIQUE.md +12 -0
  153. package/dist/grok/.grok/skills/omakase/OMAKASE-PRINCIPLES.md +15 -0
  154. package/dist/grok/.grok/skills/omakase/OMAKASE-RULES.md +25 -0
  155. package/dist/grok/.grok/skills/omakase/SKILL.md +177 -0
  156. package/dist/grok/.grok/skills/omakase/TEAMS.md +120 -0
  157. package/dist/grok/.grok/skills/omakase/core/omakase-core.md +43 -0
  158. package/dist/grok/.grok/skills/omakase/reference/archivist-workflows.md +178 -0
  159. package/dist/grok/.grok/skills/omakase/reference/backlog-audit.md +168 -0
  160. package/dist/grok/.grok/skills/omakase/reference/critique.md +92 -0
  161. package/dist/grok/.grok/skills/omakase/reference/dark-factory.md +111 -0
  162. package/dist/grok/.grok/skills/omakase/reference/engineering.md +137 -0
  163. package/dist/grok/.grok/skills/omakase/reference/execution-plan.md +159 -0
  164. package/dist/grok/.grok/skills/omakase/reference/factory-orchestration.md +123 -0
  165. package/dist/grok/.grok/skills/omakase/reference/handoff.md +43 -0
  166. package/dist/grok/.grok/skills/omakase/reference/init.md +146 -0
  167. package/dist/grok/.grok/skills/omakase/reference/learn.md +66 -0
  168. package/dist/grok/.grok/skills/omakase/reference/native-agents.md +45 -0
  169. package/dist/grok/.grok/skills/omakase/reference/plan.md +79 -0
  170. package/dist/grok/.grok/skills/omakase/reference/skill-judge.md +133 -0
  171. package/dist/grok/.grok/skills/omakase/reference/task-intake.md +94 -0
  172. package/dist/grok/.grok/skills/omakase/reference/taste.md +33 -0
  173. package/dist/grok/.grok/skills/omakase/reference/team-architecture.md +38 -0
  174. package/dist/grok/.grok/skills/omakase/teams/archives/lead.md +77 -0
  175. package/dist/grok/.grok/skills/omakase/teams/archives/sub-personas/memory-synthesizer.md +66 -0
  176. package/dist/grok/.grok/skills/omakase/teams/critics/lead.md +94 -0
  177. package/dist/grok/.grok/skills/omakase/teams/critics/sub-personas/deslop-critic.md +52 -0
  178. package/dist/grok/.grok/skills/omakase/teams/critics/sub-personas/skill-judge.md +59 -0
  179. package/dist/grok/.grok/skills/omakase/teams/critics/sub-personas/structural-critic.md +112 -0
  180. package/dist/grok/.grok/skills/omakase/teams/critics/sub-personas/verification-critic.md +73 -0
  181. package/dist/grok/.grok/skills/omakase/teams/engineering/lead.md +111 -0
  182. package/dist/grok/.grok/skills/omakase/teams/engineering/sub-personas/debugger.md +44 -0
  183. package/dist/grok/.grok/skills/omakase/teams/engineering/sub-personas/implementation-lead.md +43 -0
  184. package/dist/grok/.grok/skills/omakase/teams/engineering/sub-personas/refactor-specialist.md +56 -0
  185. package/dist/grok/.grok/skills/omakase/teams/engineering/sub-personas/senior-reviewer.md +83 -0
  186. package/dist/omakase-skill.zip +0 -0
  187. package/package.json +54 -0
package/LICENSE ADDED
@@ -0,0 +1,182 @@
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
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all
15
+ other entities that control, are controlled by, or are under common
16
+ control with that entity.
17
+
18
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
19
+ permissions granted by this License.
20
+
21
+ "Source" form shall mean the preferred form for making modifications,
22
+ including but not limited to software source code, documentation
23
+ source, and configuration files.
24
+
25
+ "Object" form shall mean any form resulting from mechanical
26
+ transformation or translation of a Source form, including but not
27
+ limited to compiled object code, generated documentation, and
28
+ conversions to other media types.
29
+
30
+ "Work" shall mean the work of authorship, whether in Source or
31
+ Object form, made available under the License, as indicated by a
32
+ copyright notice that is included in or attached to the work.
33
+
34
+ "Derivative Works" shall mean any work, whether in Source or Object
35
+ form, that is based on (or derived from) the Work and for which the
36
+ editorial revisions, annotations, elaborations, or other modifications
37
+ represent, as a whole, an original work of authorship.
38
+
39
+ "Contribution" shall mean any work of authorship, including the
40
+ original version of the Work and any modifications or additions to
41
+ that Work or Derivative Works thereof, that is intentionally
42
+ submitted to Licensor for inclusion in the Work by the copyright
43
+ owner or by an individual or Legal Entity authorized to submit on
44
+ behalf of the copyright owner.
45
+
46
+ "Contributor" shall mean Licensor and any individual or Legal Entity
47
+ on behalf of whom a Contribution has been received by Licensor and
48
+ subsequently incorporated within the Work.
49
+
50
+ 2. Grant of Copyright License.
51
+
52
+ Subject to the terms and conditions of this License, each Contributor
53
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
54
+ royalty-free, irrevocable copyright license to reproduce, prepare
55
+ Derivative Works of, publicly display, publicly perform, sublicense,
56
+ and distribute the Work and such Derivative Works in Source or Object
57
+ form.
58
+
59
+ 3. Grant of Patent License.
60
+
61
+ Subject to the terms and conditions of this License, each Contributor
62
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
63
+ royalty-free, irrevocable (except as stated in this section) patent
64
+ license to make, have made, use, offer to sell, sell, import, and
65
+ otherwise transfer the Work, where such license applies only to those
66
+ patent claims licensable by such Contributor that are necessarily
67
+ infringed by their Contribution(s) alone or by combination of their
68
+ Contribution(s) with the Work to which such Contribution(s) was
69
+ submitted.
70
+
71
+ 4. Redistribution.
72
+
73
+ You may reproduce and distribute copies of the Work or Derivative
74
+ Works thereof in any medium, with or without modifications, and in
75
+ Source or Object form, provided that You meet the following
76
+ conditions:
77
+
78
+ (a) You must give any other recipients of the Work or Derivative
79
+ Works a copy of this License; and
80
+
81
+ (b) You must cause any modified files to carry prominent notices
82
+ stating that You changed the files; and
83
+
84
+ (c) You must retain, in the Source form of any Derivative Works that
85
+ You distribute, all copyright, patent, trademark, and attribution
86
+ notices from the Source form of the Work, excluding those notices
87
+ that do not pertain to any part of the Derivative Works; and
88
+
89
+ (d) If the Work includes a "NOTICE" text file as part of its
90
+ distribution, then any Derivative Works that You distribute must
91
+ include a readable copy of the attribution notices contained
92
+ within such NOTICE file, excluding those notices that do not
93
+ pertain to any part of the Derivative Works, in at least one of
94
+ the following places: within a NOTICE text file distributed as
95
+ part of the Derivative Works; within the Source form or
96
+ documentation, if provided along with the Derivative Works; or,
97
+ within a display generated by the Derivative Works, if and
98
+ wherever such third-party notices normally appear. The contents
99
+ of the NOTICE file are for informational purposes only and do not
100
+ modify the License. You may add Your own attribution notices
101
+ within Derivative Works that You distribute, alongside or as an
102
+ addendum to the NOTICE text from the Work, provided that such
103
+ additional attribution notices cannot be construed as modifying
104
+ the License.
105
+
106
+ You may add Your own copyright statement to Your modifications and
107
+ may provide additional or different license terms and conditions for
108
+ use, reproduction, or distribution of Your modifications, or for any
109
+ such Derivative Works as a whole, provided Your use, reproduction,
110
+ and distribution of the Work otherwise complies with the conditions
111
+ stated in this License.
112
+
113
+ 5. Submission of Contributions.
114
+
115
+ Unless You explicitly state otherwise, any Contribution intentionally
116
+ submitted for inclusion in the Work by You to the Licensor shall be
117
+ under the terms and conditions of this License, without any
118
+ additional terms or conditions. Notwithstanding the above, nothing
119
+ herein shall supersede or modify the terms of any separate license
120
+ agreement you may have executed with Licensor regarding such
121
+ Contributions.
122
+
123
+ 6. Trademarks.
124
+
125
+ This License does not grant permission to use the trade names,
126
+ trademarks, service marks, or product names of the Licensor, except
127
+ as required for reasonable and customary use in describing the origin
128
+ of the Work and reproducing the content of the NOTICE file.
129
+
130
+ 7. Disclaimer of Warranty.
131
+
132
+ Unless required by applicable law or agreed to in writing, Licensor
133
+ provides the Work (and each Contributor provides its Contributions)
134
+ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
135
+ either express or implied, including, without limitation, any
136
+ warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY,
137
+ or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for
138
+ determining the appropriateness of using or redistributing the Work
139
+ and assume any risks associated with Your exercise of permissions
140
+ under this License.
141
+
142
+ 8. Limitation of Liability.
143
+
144
+ In no event and under no legal theory, whether in tort (including
145
+ negligence), contract, or otherwise, unless required by applicable
146
+ law (such as deliberate and grossly negligent acts) or agreed to in
147
+ writing, shall any Contributor be liable to You for damages,
148
+ including any direct, indirect, special, incidental, or consequential
149
+ damages of any character arising as a result of this License or out
150
+ of the use or inability to use the Work (including but not limited
151
+ to damages for loss of goodwill, work stoppage, computer failure or
152
+ malfunction, or any and all other commercial damages or losses),
153
+ even if such Contributor has been advised of the possibility of such
154
+ damages.
155
+
156
+ 9. Accepting Warranty or Support.
157
+
158
+ When redistributing the Work or Derivative Works thereof, You may
159
+ choose to offer, and charge a fee for, acceptance of support,
160
+ warranty, indemnity, or other liability obligations and/or rights
161
+ consistent with this License. However, in accepting such obligations,
162
+ You may act only on Your own behalf and on Your sole responsibility,
163
+ not on behalf of any other Contributor, and only if You agree to
164
+ indemnify, defend, and hold each Contributor harmless for any
165
+ liability incurred by, or claims asserted against, such Contributor
166
+ by reason of your accepting any such warranty or support.
167
+
168
+ END OF TERMS AND CONDITIONS
169
+
170
+ Copyright 2026 Rick Blalock
171
+
172
+ Licensed under the Apache License, Version 2.0 (the "License");
173
+ you may not use this file except in compliance with the License.
174
+ You may obtain a copy of the License at
175
+
176
+ http://www.apache.org/licenses/LICENSE-2.0
177
+
178
+ Unless required by applicable law or agreed to in writing, software
179
+ distributed under the License is distributed on an "AS IS" BASIS,
180
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
181
+ See the License for the specific language governing permissions and
182
+ limitations under the License.
@@ -0,0 +1,12 @@
1
+ # Omakase Critique Rubric
2
+
3
+ Use this rubric to judge every major output.
4
+
5
+ - **Senior Expertise** — Does this output feel like it was created by a top-tier expert with many years of real experience?
6
+ - **Zero AI Slop** — Is it completely free of generic AI patterns, fluff, unnecessary comments, defensive code, or synthetic tone?
7
+ - **Ruthless Simplicity** — Is this the simplest possible solution that works? Were any opportunities to reduce complexity missed?
8
+ - **Context Fidelity** — Does it perfectly respect the project's context, design principles, existing style, and architecture?
9
+ - **Pragmatic Craftsmanship** — Is the code clean, maintainable, and pragmatic? No over-engineering or unnecessary abstraction.
10
+ - **Taste & Voice** — Does the writing, design, or copy match our exact intended tone and brand voice?
11
+ - **Structural Integrity** — Does it improve the codebase or output quality, or does it add bloat and scattered logic?
12
+ - **Excellence Gate** — Would we be proud to ship this exactly as-is with zero revisions?
@@ -0,0 +1,15 @@
1
+ # Omakase Principles
2
+
3
+ This is not just another collection of AI agents. This is a standard.
4
+
5
+ **Core Philosophy:**
6
+
7
+ - Trust the chef — You state what you want. We decide how to get it done.
8
+ - Specialization beats generalization — Every agent stays narrow and masterful at one thing.
9
+ - Quality over speed — Mediocre work is never acceptable.
10
+ - Senior taste is non-negotiable — Every output must feel like it came from a top-tier expert.
11
+ - Anti-slop by design — We aggressively reject generic AI patterns in both code and communication.
12
+
13
+ **Our Standard:**
14
+
15
+ Everything we produce should feel like it was made by someone with deep expertise and impeccable taste. If it looks, feels, or behaves like typical AI output, it has failed.
@@ -0,0 +1,25 @@
1
+ # Omakase Agent Rules
2
+
3
+ 1. **Full Context First** — Every agent must gather complete context before starting work. This includes project docs, recent conversation history, and any handoff notes.
4
+
5
+ 2. **Senior Craftsmanship** — All output must reflect senior-level taste. Code must be clean and pragmatic. No AI-looking patterns in code, design, or writing.
6
+
7
+ 3. **Zero Slop Policy** — Every major output is reviewed by a critique agent using a strict rubric. It must pass before being delivered.
8
+
9
+ 4. **Explain Your Taste** — Every non-trivial output must include a short “Why this approach” section showing senior-level reasoning.
10
+
11
+ 5. **Persistent Taste Memory** — The system maintains `.omakaseagent/taste.md` (project-specific taste + rejections) and `decisions.md` (key choices with Context/Decision/Why/Revisit if) at project root. These are sacred files that the Omakase skill **must read on every significant task** (see SKILL.md Setup). All agents cite specific entries in "Memory consulted" notes and "Why this approach" sections. Weak or absent memory is a Context Fidelity failure.
12
+
13
+ 6. **Clear Handoff Protocol** — When agents pass work between each other, they must include a concise summary of decisions and reasoning.
14
+
15
+ 7. **Self-Awareness** — If an agent lacks context or is uncertain, it must ask clarifying questions instead of guessing.
16
+
17
+ 8. **Excellence Gate** — Nothing mediocre gets delivered. Work only reaches you after passing critique.
18
+
19
+ 9. **Ruthless Simplicity** — Prefer simple, direct solutions unless complexity is clearly justified.
20
+
21
+ 10. **Tone & Voice Consistency** — All output must match the intended brand voice with zero generic AI fluff.
22
+
23
+ 11. **Proactive Quality** — Agents should proactively flag potential issues or suggest meaningful improvements.
24
+
25
+ 12. **Audit Trail** — Every major change includes a brief log of what was changed and why.
package/README.md ADDED
@@ -0,0 +1,96 @@
1
+ # Omakase
2
+
3
+ **The chef's standard.** One skill. Craftsman's taste. Zero AI slop.
4
+
5
+ [![skills.sh](https://skills.sh/b/rblalock/omakaseagent)](https://skills.sh/rblalock/omakaseagent)
6
+
7
+ Trust the chef — state the goal. Omakase applies the bar, remembers taste, and critiques before anything significant ships.
8
+
9
+ ## What it is
10
+
11
+ Omakase is a **portable quality standard** for agent work: twelve rules, a critique rubric, and project memory (`.omakaseagent/taste.md`, `decisions.md`). Not a bag of prompts.
12
+
13
+ Generic, hedging, over-engineered output fails. Non-trivial work explains *why* this approach.
14
+
15
+ ## Quick start
16
+
17
+ ```bash
18
+ npx omakaseagent init
19
+ npx omakaseagent learn # repo-specific Level 4 factory (scenarios, gates)
20
+ ```
21
+
22
+ Reload your harness, then talk to a **lead** (not a menu of skills):
23
+
24
+ | Harness | Example |
25
+ |---------|---------|
26
+ | Cursor / Claude IDE | `@omakase-engineer add rate limiting with backoff` |
27
+ | OpenCode | `opencode run --agent omakase-engineer "add rate limiting…"` |
28
+ | Grok | `grok --agent omakase-engineer "…"` |
29
+ | Claude CLI | `claude -p --agent omakase-critic "review the auth module"` |
30
+
31
+ **Leads:** `@omakase-engineer` · `@omakase-critic` · `@omakase-archivist` — specialists stay internal; leads delegate.
32
+
33
+ **Router skill** (`omakase-router`) is only for plan, taste, handoff, and init when you are not using a native lead:
34
+
35
+ ```
36
+ /omakase-router plan <goal>
37
+ /omakase-router critique <target>
38
+ ```
39
+
40
+ Harness quirks, Codex names, and troubleshooting: [docs/NATIVE-SUBAGENTS.md](docs/NATIVE-SUBAGENTS.md).
41
+
42
+ ## The standard (always loaded)
43
+
44
+ | File | Role |
45
+ |------|------|
46
+ | [OMAKASE-RULES.md](OMAKASE-RULES.md) | Twelve non-negotiable rules |
47
+ | [OMAKASE-CRITIQUE.md](OMAKASE-CRITIQUE.md) | Rubric for major output |
48
+ | [OMAKASE-PRINCIPLES.md](OMAKASE-PRINCIPLES.md) | Why this is a standard, not a prompt pack |
49
+
50
+ Memory lives in `.omakaseagent/` after `init`.
51
+
52
+ ## Install
53
+
54
+ **New project:**
55
+
56
+ ```bash
57
+ npx omakaseagent init
58
+ ```
59
+
60
+ **Skill + agents only** (harness already configured):
61
+
62
+ ```bash
63
+ npx omakaseagent skills install # auto-detect harness
64
+ npx omakaseagent skills install cursor # or: claude | agents | grok | codex
65
+ ```
66
+
67
+ Also on the skills ecosystem: `npx skills add rblalock/omakaseagent` ([skills.sh](https://skills.sh/rblalock/omakaseagent)).
68
+
69
+ **No terminal?** Omakase works in chat apps. Download
70
+ [omakase-skill.zip](https://omakaseagent.com/omakase-skill.zip),
71
+ then upload it in Claude (Customize → Skills → Upload skill) or ChatGPT
72
+ (Skills → New skill → Upload from your computer). In chat
73
+ you get the standard (rules + critique gate); the full kitchen (leads, project
74
+ memory) needs a coding harness.
75
+
76
+ Use `omakase skills install --no-native-agents` for skill-only. Verify artifacts: `npm run verify:native-agents`.
77
+
78
+ ## Developing this repo
79
+
80
+ Source: `skill/`. Shipped bundles: `dist/` (committed — do not edit by hand).
81
+
82
+ ```bash
83
+ npm link # local CLI
84
+ npm run build
85
+ npm run verify:native-agents
86
+ npx omakaseagent init # dogfood in this clone
87
+ npx omakaseagent learn # factory layout for this repo
88
+ ```
89
+
90
+ Level 4 methodology: [skill/reference/dark-factory.md](skill/reference/dark-factory.md). Multi-agent E2E: [examples/factory-e2e/](examples/factory-e2e/). Learn snapshot: [examples/factory-dogfood/](examples/factory-dogfood/).
91
+
92
+ Do not commit local harness dirs (`.cursor/`, `.claude/`, etc.) — regenerate with `init`. Personas: `skill/teams/`.
93
+
94
+ ## License
95
+
96
+ Apache 2.0