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.
- package/CHANGELOG.md +28 -5
- package/README.md +85 -0
- package/package.json +5 -1
- package/resources/local/gsap-skills/.claude-plugin/marketplace.json +20 -0
- package/resources/local/gsap-skills/.claude-plugin/plugin.json +6 -0
- package/resources/local/gsap-skills/.cursor-plugin/marketplace.json +13 -0
- package/resources/local/gsap-skills/.cursor-plugin/plugin.json +22 -0
- package/resources/local/gsap-skills/.github/copilot-instructions.md +17 -0
- package/resources/local/gsap-skills/.github/instructions/react.instructions.md +15 -0
- package/resources/local/gsap-skills/.github/instructions/scrolltrigger.instructions.md +18 -0
- package/resources/local/gsap-skills/AGENTS.md +27 -0
- package/resources/local/gsap-skills/CLAUDE.md +1 -0
- package/resources/local/gsap-skills/GEMINI.md +1 -0
- package/resources/local/gsap-skills/LICENSE +21 -0
- package/resources/local/gsap-skills/README.md +163 -0
- package/resources/local/gsap-skills/assets/gsap-green.svg +7 -0
- package/resources/local/gsap-skills/assets/gsap-icon-inverted.svg +15 -0
- package/resources/local/gsap-skills/assets/gsap-icon-square.svg +1 -0
- package/resources/local/gsap-skills/assets/gsap-white.svg +7 -0
- package/resources/local/gsap-skills/examples/README.md +29 -0
- package/resources/local/gsap-skills/examples/nuxt/app/app.vue +3 -0
- package/resources/local/gsap-skills/examples/nuxt/app/composables/useGSAP.ts +91 -0
- package/resources/local/gsap-skills/examples/nuxt/app/pages/index.vue +55 -0
- package/resources/local/gsap-skills/examples/nuxt/nuxt.config.ts +4 -0
- package/resources/local/gsap-skills/examples/nuxt/package.json +18 -0
- package/resources/local/gsap-skills/examples/react/App.jsx +46 -0
- package/resources/local/gsap-skills/examples/react/index.html +12 -0
- package/resources/local/gsap-skills/examples/react/main.jsx +9 -0
- package/resources/local/gsap-skills/examples/react/package.json +21 -0
- package/resources/local/gsap-skills/examples/react/vite.config.js +7 -0
- package/resources/local/gsap-skills/examples/vanilla/index.html +33 -0
- package/resources/local/gsap-skills/examples/vanilla/main.js +36 -0
- package/resources/local/gsap-skills/examples/vue/app.vue +47 -0
- package/resources/local/gsap-skills/examples/vue/index.html +15 -0
- package/resources/local/gsap-skills/examples/vue/main.js +9 -0
- package/resources/local/gsap-skills/examples/vue/package.json +19 -0
- package/resources/local/gsap-skills/examples/vue/vite.config.js +7 -0
- package/resources/local/gsap-skills/skills/gsap-core/SKILL.md +254 -0
- package/resources/local/gsap-skills/skills/gsap-frameworks/SKILL.md +266 -0
- package/resources/local/gsap-skills/skills/gsap-performance/SKILL.md +79 -0
- package/resources/local/gsap-skills/skills/gsap-plugins/SKILL.md +433 -0
- package/resources/local/gsap-skills/skills/gsap-react/SKILL.md +136 -0
- package/resources/local/gsap-skills/skills/gsap-scrolltrigger/SKILL.md +296 -0
- package/resources/local/gsap-skills/skills/gsap-timeline/SKILL.md +107 -0
- package/resources/local/gsap-skills/skills/gsap-utils/SKILL.md +284 -0
- package/resources/local/gsap-skills/skills/llms.txt +39 -0
- package/resources/local/hermes-agent-core/AGENTS.md +1132 -0
- package/resources/local/hermes-agent-core/LICENSE +21 -0
- package/resources/local/hermes-agent-core/README.md +215 -0
- package/resources/local/hermes-agent-core/docs/2026-05-07-s6-overlay-dynamic-subagent-gateways.md +434 -0
- package/resources/local/hermes-agent-core/hermes-already-has-routines.md +160 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/claude-code/SKILL.md +745 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/codex/SKILL.md +130 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/hermes-agent/SKILL.md +1021 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/kanban-codex-lane/SKILL.md +277 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/kanban-codex-lane/templates/pmb-codex-lane-prompt.md +57 -0
- package/resources/local/hermes-agent-core/skills/autonomous-ai-agents/opencode/SKILL.md +219 -0
- package/resources/local/hermes-agent-core/skills/github/DESCRIPTION.md +3 -0
- package/resources/local/hermes-agent-core/skills/github/codebase-inspection/SKILL.md +116 -0
- package/resources/local/hermes-agent-core/skills/github/github-auth/SKILL.md +247 -0
- package/resources/local/hermes-agent-core/skills/github/github-auth/scripts/gh-env.sh +66 -0
- package/resources/local/hermes-agent-core/skills/github/github-code-review/SKILL.md +481 -0
- package/resources/local/hermes-agent-core/skills/github/github-code-review/references/review-output-template.md +74 -0
- package/resources/local/hermes-agent-core/skills/github/github-issues/SKILL.md +370 -0
- package/resources/local/hermes-agent-core/skills/github/github-issues/templates/bug-report.md +35 -0
- package/resources/local/hermes-agent-core/skills/github/github-issues/templates/feature-request.md +31 -0
- package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/SKILL.md +367 -0
- package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
- package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
- package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
- package/resources/local/hermes-agent-core/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
- package/resources/local/hermes-agent-core/skills/github/github-repo-management/SKILL.md +516 -0
- package/resources/local/hermes-agent-core/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
- package/resources/local/hermes-agent-core/skills/mcp/DESCRIPTION.md +3 -0
- package/resources/local/hermes-agent-core/skills/mcp/native-mcp/SKILL.md +357 -0
- package/resources/local/hermes-agent-core/skills/software-development/debugging-hermes-tui-commands/SKILL.md +152 -0
- package/resources/local/hermes-agent-core/skills/software-development/hermes-agent-skill-authoring/SKILL.md +165 -0
- package/resources/local/hermes-agent-core/skills/software-development/hermes-s6-container-supervision/SKILL.md +176 -0
- package/resources/local/hermes-agent-core/skills/software-development/node-inspect-debugger/SKILL.md +319 -0
- package/resources/local/hermes-agent-core/skills/software-development/plan/SKILL.md +58 -0
- package/resources/local/hermes-agent-core/skills/software-development/python-debugpy/SKILL.md +375 -0
- package/resources/local/hermes-agent-core/skills/software-development/requesting-code-review/SKILL.md +280 -0
- package/resources/local/hermes-agent-core/skills/software-development/spike/SKILL.md +197 -0
- package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/SKILL.md +352 -0
- package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
- package/resources/local/hermes-agent-core/skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
- package/resources/local/hermes-agent-core/skills/software-development/systematic-debugging/SKILL.md +367 -0
- package/resources/local/hermes-agent-core/skills/software-development/test-driven-development/SKILL.md +343 -0
- package/resources/local/hermes-agent-core/skills/software-development/writing-plans/SKILL.md +297 -0
- package/resources/local/manifest.json +12 -0
- package/rule.md +2 -0
- package/scripts/audit-pack.js +5 -0
- package/scripts/smoke-browser.js +53 -0
- package/scripts/smoke-package.js +38 -4
- package/skill.md +36 -4
- package/skills/gsap.md +26 -0
- package/skills/hermes-agent.md +17 -0
- package/src/agent/agent-definitions.js +4 -4
- package/src/agent/runtime.js +179 -5
- package/src/agent/subagent-child.js +44 -0
- package/src/ai/capability-scorecard.js +193 -14
- package/src/ai/hermes-core.js +77 -0
- package/src/ai/model-capabilities.js +42 -2
- package/src/ai/prompts/system-prompt.js +18 -2
- package/src/ai/small-model-amplifier.js +35 -7
- package/src/ai/workflow-selector.js +22 -1
- package/src/cli/commands.js +46 -2
- package/src/cli/config.js +45 -6
- package/src/cli/context-loader.js +253 -9
- package/src/cli/conversation-format.js +5 -0
- package/src/cli/input-controller.js +79 -10
- package/src/cli/prompt-builder.js +47 -8
- package/src/cli/repl-commands.js +115 -0
- package/src/cli/repl.js +343 -85
- package/src/cli/slash-commands.js +4 -2
- package/src/cli/tui.js +133 -37
- package/src/mcp/client.js +54 -11
- package/src/mcp/presets.js +114 -0
- package/src/tools/agent.js +316 -25
- package/src/tools/executor.js +412 -12
- package/src/tools/permission.js +20 -17
- 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/
|
|
163
|
-
export interface
|
|
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
|
-
|
|
182
|
-
|
|
183
|
-
|
|
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;
|