winter-super-cli 2026.6.24 → 2026.6.27

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 (123) hide show
  1. package/CHANGELOG.md +28 -5
  2. package/README.md +85 -0
  3. package/package.json +5 -1
  4. package/resources/local/gsap-skills/.claude-plugin/marketplace.json +20 -0
  5. package/resources/local/gsap-skills/.claude-plugin/plugin.json +6 -0
  6. package/resources/local/gsap-skills/.cursor-plugin/marketplace.json +13 -0
  7. package/resources/local/gsap-skills/.cursor-plugin/plugin.json +22 -0
  8. package/resources/local/gsap-skills/.github/copilot-instructions.md +17 -0
  9. package/resources/local/gsap-skills/.github/instructions/react.instructions.md +15 -0
  10. package/resources/local/gsap-skills/.github/instructions/scrolltrigger.instructions.md +18 -0
  11. package/resources/local/gsap-skills/AGENTS.md +27 -0
  12. package/resources/local/gsap-skills/CLAUDE.md +1 -0
  13. package/resources/local/gsap-skills/GEMINI.md +1 -0
  14. package/resources/local/gsap-skills/LICENSE +21 -0
  15. package/resources/local/gsap-skills/README.md +163 -0
  16. package/resources/local/gsap-skills/assets/gsap-green.svg +7 -0
  17. package/resources/local/gsap-skills/assets/gsap-icon-inverted.svg +15 -0
  18. package/resources/local/gsap-skills/assets/gsap-icon-square.svg +1 -0
  19. package/resources/local/gsap-skills/assets/gsap-white.svg +7 -0
  20. package/resources/local/gsap-skills/examples/README.md +29 -0
  21. package/resources/local/gsap-skills/examples/nuxt/app/app.vue +3 -0
  22. package/resources/local/gsap-skills/examples/nuxt/app/composables/useGSAP.ts +91 -0
  23. package/resources/local/gsap-skills/examples/nuxt/app/pages/index.vue +55 -0
  24. package/resources/local/gsap-skills/examples/nuxt/nuxt.config.ts +4 -0
  25. package/resources/local/gsap-skills/examples/nuxt/package.json +18 -0
  26. package/resources/local/gsap-skills/examples/react/App.jsx +46 -0
  27. package/resources/local/gsap-skills/examples/react/index.html +12 -0
  28. package/resources/local/gsap-skills/examples/react/main.jsx +9 -0
  29. package/resources/local/gsap-skills/examples/react/package.json +21 -0
  30. package/resources/local/gsap-skills/examples/react/vite.config.js +7 -0
  31. package/resources/local/gsap-skills/examples/vanilla/index.html +33 -0
  32. package/resources/local/gsap-skills/examples/vanilla/main.js +36 -0
  33. package/resources/local/gsap-skills/examples/vue/app.vue +47 -0
  34. package/resources/local/gsap-skills/examples/vue/index.html +15 -0
  35. package/resources/local/gsap-skills/examples/vue/main.js +9 -0
  36. package/resources/local/gsap-skills/examples/vue/package.json +19 -0
  37. package/resources/local/gsap-skills/examples/vue/vite.config.js +7 -0
  38. package/resources/local/gsap-skills/skills/gsap-core/SKILL.md +254 -0
  39. package/resources/local/gsap-skills/skills/gsap-frameworks/SKILL.md +266 -0
  40. package/resources/local/gsap-skills/skills/gsap-performance/SKILL.md +79 -0
  41. package/resources/local/gsap-skills/skills/gsap-plugins/SKILL.md +433 -0
  42. package/resources/local/gsap-skills/skills/gsap-react/SKILL.md +136 -0
  43. package/resources/local/gsap-skills/skills/gsap-scrolltrigger/SKILL.md +296 -0
  44. package/resources/local/gsap-skills/skills/gsap-timeline/SKILL.md +107 -0
  45. package/resources/local/gsap-skills/skills/gsap-utils/SKILL.md +284 -0
  46. package/resources/local/gsap-skills/skills/llms.txt +39 -0
  47. package/resources/local/hermes-agent-core/AGENTS.md +1132 -0
  48. package/resources/local/hermes-agent-core/LICENSE +21 -0
  49. package/resources/local/hermes-agent-core/README.md +215 -0
  50. package/resources/local/hermes-agent-core/docs/2026-05-07-s6-overlay-dynamic-subagent-gateways.md +434 -0
  51. package/resources/local/hermes-agent-core/hermes-already-has-routines.md +160 -0
  52. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
  53. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/claude-code/SKILL.md +745 -0
  54. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/codex/SKILL.md +130 -0
  55. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/hermes-agent/SKILL.md +1021 -0
  56. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/kanban-codex-lane/SKILL.md +277 -0
  57. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/kanban-codex-lane/templates/pmb-codex-lane-prompt.md +57 -0
  58. package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/opencode/SKILL.md +219 -0
  59. package/resources/local/hermes-agent-core/skills/github/DESCRIPTION.md +3 -0
  60. package/resources/local/hermes-agent-core/skills/github/codebase-inspection/SKILL.md +116 -0
  61. package/resources/local/hermes-agent-core/skills/github/github-auth/SKILL.md +247 -0
  62. package/resources/local/hermes-agent-core/skills/github/github-auth/scripts/gh-env.sh +66 -0
  63. package/resources/local/hermes-agent-core/skills/github/github-code-review/SKILL.md +481 -0
  64. package/resources/local/hermes-agent-core/skills/github/github-code-review/references/review-output-template.md +74 -0
  65. package/resources/local/hermes-agent-core/skills/github/github-issues/SKILL.md +370 -0
  66. package/resources/local/hermes-agent-core/skills/github/github-issues/templates/bug-report.md +35 -0
  67. package/resources/local/hermes-agent-core/skills/github/github-issues/templates/feature-request.md +31 -0
  68. package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/SKILL.md +367 -0
  69. package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
  70. package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
  71. package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
  72. package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
  73. package/resources/local/hermes-agent-core/skills/github/github-repo-management/SKILL.md +516 -0
  74. package/resources/local/hermes-agent-core/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
  75. package/resources/local/hermes-agent-core/skills/mcp/DESCRIPTION.md +3 -0
  76. package/resources/local/hermes-agent-core/skills/mcp/native-mcp/SKILL.md +357 -0
  77. package/resources/local/hermes-agent-core/skills/software-development/debugging-hermes-tui-commands/SKILL.md +152 -0
  78. package/resources/local/hermes-agent-core/skills/software-development/hermes-agent-skill-authoring/SKILL.md +165 -0
  79. package/resources/local/hermes-agent-core/skills/software-development/hermes-s6-container-supervision/SKILL.md +176 -0
  80. package/resources/local/hermes-agent-core/skills/software-development/node-inspect-debugger/SKILL.md +319 -0
  81. package/resources/local/hermes-agent-core/skills/software-development/plan/SKILL.md +58 -0
  82. package/resources/local/hermes-agent-core/skills/software-development/python-debugpy/SKILL.md +375 -0
  83. package/resources/local/hermes-agent-core/skills/software-development/requesting-code-review/SKILL.md +280 -0
  84. package/resources/local/hermes-agent-core/skills/software-development/spike/SKILL.md +197 -0
  85. package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/SKILL.md +352 -0
  86. package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
  87. package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
  88. package/resources/local/hermes-agent-core/skills/software-development/systematic-debugging/SKILL.md +367 -0
  89. package/resources/local/hermes-agent-core/skills/software-development/test-driven-development/SKILL.md +343 -0
  90. package/resources/local/hermes-agent-core/skills/software-development/writing-plans/SKILL.md +297 -0
  91. package/resources/local/manifest.json +12 -0
  92. package/rule.md +2 -0
  93. package/scripts/audit-pack.js +5 -0
  94. package/scripts/smoke-browser.js +53 -0
  95. package/scripts/smoke-package.js +38 -4
  96. package/skill.md +36 -4
  97. package/skills/gsap.md +26 -0
  98. package/skills/hermes-agent.md +17 -0
  99. package/src/agent/agent-definitions.js +4 -4
  100. package/src/agent/runtime.js +179 -5
  101. package/src/agent/subagent-child.js +44 -0
  102. package/src/ai/capability-scorecard.js +193 -14
  103. package/src/ai/hermes-core.js +77 -0
  104. package/src/ai/model-capabilities.js +42 -2
  105. package/src/ai/prompts/system-prompt.js +18 -2
  106. package/src/ai/small-model-amplifier.js +35 -7
  107. package/src/ai/workflow-selector.js +22 -1
  108. package/src/cli/commands.js +46 -2
  109. package/src/cli/config.js +45 -6
  110. package/src/cli/context-loader.js +253 -9
  111. package/src/cli/conversation-format.js +5 -0
  112. package/src/cli/input-controller.js +79 -10
  113. package/src/cli/prompt-builder.js +47 -8
  114. package/src/cli/repl-commands.js +115 -0
  115. package/src/cli/repl.js +343 -85
  116. package/src/cli/slash-commands.js +4 -2
  117. package/src/cli/tui.js +133 -37
  118. package/src/mcp/client.js +54 -11
  119. package/src/mcp/presets.js +114 -0
  120. package/src/tools/agent.js +316 -25
  121. package/src/tools/executor.js +412 -12
  122. package/src/tools/permission.js +20 -17
  123. package/winter.d.ts +112 -10
package/winter.d.ts CHANGED
@@ -56,7 +56,7 @@ declare module './src/cli/snowflake-logo.js' {
56
56
  export function providerStatus(name: string, status: string): string;
57
57
  }
58
58
 
59
- declare module './src/cli/tui.js' {
59
+ declare module './src/cli/tui.js' {
60
60
  export interface TuiHistoryEntry {
61
61
  role?: 'user' | 'assistant' | string;
62
62
  content?: string;
@@ -157,10 +157,98 @@ declare module './src/cli/tui.js' {
157
157
  width?: number;
158
158
  title?: string;
159
159
  }): string;
160
- }
161
-
162
- declare module './src/cli/repl.js' {
163
- export interface WinterREPLOptions {
160
+ }
161
+
162
+ declare module './src/ai/capability-scorecard.js' {
163
+ export interface CapabilityProbe {
164
+ key: string;
165
+ label: string;
166
+ ok?: boolean;
167
+ }
168
+
169
+ export interface CapabilityArea {
170
+ id: string;
171
+ label: string;
172
+ weight: number;
173
+ target: string;
174
+ passed: number;
175
+ total: number;
176
+ score: number;
177
+ percent: number;
178
+ probes: CapabilityProbe[];
179
+ checks: CapabilityProbe[];
180
+ }
181
+
182
+ export interface CapabilityGap {
183
+ id: string;
184
+ label: string;
185
+ missing: string[];
186
+ }
187
+
188
+ export interface CapabilityScorecard {
189
+ target: number;
190
+ overall: number;
191
+ score: number;
192
+ maxScore: number;
193
+ status: 'ready' | 'below-target';
194
+ competitors: Array<{
195
+ name: string;
196
+ strengths: string[];
197
+ }>;
198
+ areas: CapabilityArea[];
199
+ gaps: CapabilityGap[];
200
+ }
201
+
202
+ export const WINTER_CAPABILITY_TARGET: number;
203
+ export function assessWinterCapabilities(repl?: Record<string, unknown>): Promise<CapabilityScorecard>;
204
+ export function formatCapabilityScorecard(
205
+ report: CapabilityScorecard,
206
+ options?: { colors?: Record<string, string> }
207
+ ): string;
208
+ }
209
+
210
+ declare module './src/ai/hermes-core.js' {
211
+ export interface HermesCoreSignals {
212
+ agent: boolean;
213
+ skills: boolean;
214
+ memory: boolean;
215
+ automation: boolean;
216
+ gateway: boolean;
217
+ tui: boolean;
218
+ mcp: boolean;
219
+ }
220
+
221
+ export const HERMES_CORE_RESOURCE: string;
222
+ export function detectHermesCoreSignals(input?: {
223
+ taskText?: string;
224
+ projectSignals?: string[];
225
+ }): HermesCoreSignals;
226
+ export function shouldApplyHermesCore(input?: {
227
+ taskText?: string;
228
+ projectSignals?: string[];
229
+ }): boolean;
230
+ export function buildHermesCoreContract(options?: { compact?: boolean }): string;
231
+ }
232
+
233
+ declare module './src/ai/small-model-amplifier.js' {
234
+ export interface SmallModelAmplification {
235
+ weak: boolean;
236
+ maxToolTurns: number;
237
+ enforceSelfCritique: boolean;
238
+ hint: string;
239
+ }
240
+
241
+ export function isWeakTier(modelTier?: string): boolean;
242
+ export function buildCodingMasteryContract(options?: { compact?: boolean }): string;
243
+ export function buildSmallModelAmplification(options?: {
244
+ modelTier?: string;
245
+ workflowProfile?: string;
246
+ depth?: string;
247
+ }): SmallModelAmplification;
248
+ }
249
+
250
+ declare module './src/cli/repl.js' {
251
+ export interface WinterREPLOptions {
164
252
  projectPath?: string;
165
253
  sessionId?: string | null;
166
254
  version?: string;
@@ -176,11 +264,25 @@ declare module './src/cli/repl.js' {
176
264
  start(): Promise<void>;
177
265
  showStatus(): void;
178
266
  showTuiDashboard(): void;
179
- showInputPrompt(): void;
180
- closeInputBox(): void;
181
- buildInputPanel(): {
182
- top: string;
183
- status: string;
267
+ showInputPrompt(): void;
268
+ closeInputBox(): void;
269
+ chat(message: string, imageAttachments?: unknown[]): Promise<void>;
270
+ runConversation(messages: unknown[], label?: string, tools?: unknown[] | null): Promise<{
271
+ finalContent: string;
272
+ usedTools: boolean;
273
+ usedMutatingTools: boolean;
274
+ autoVerified?: boolean;
275
+ autoVerificationPassed?: boolean;
276
+ }>;
277
+ inferVerificationCommands(task?: string): Promise<string[]>;
278
+ runVerification(commands?: string[] | null): Promise<{
279
+ passed: boolean;
280
+ details: Array<{ cmd: string; passed: boolean; output: string }>;
281
+ }>;
282
+ runAutoHealing(task: string): Promise<void>;
283
+ buildInputPanel(): {
284
+ top: string;
285
+ status: string;
184
286
  hint: string;
185
287
  prompt: string;
186
288
  bottom: string;