claudecode-omc 5.6.7 → 5.9.1
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/.local/skills/THIRD_PARTY_LICENSES/AvdLee-SwiftUI-Agent-Skill.LICENSE +21 -0
- package/.local/skills/THIRD_PARTY_LICENSES/Dimillian-Skills.LICENSE +21 -0
- package/.local/skills/THIRD_PARTY_LICENSES/README.md +36 -0
- package/.local/skills/THIRD_PARTY_LICENSES/twostraws-swiftui-agent-skill.LICENSE +21 -0
- package/.local/skills/ios-debugger-agent/SKILL.md +51 -0
- package/.local/skills/ios-debugger-agent/agents/openai.yaml +4 -0
- package/.local/skills/prompt-optimizer/SKILL.md +262 -19
- package/.local/skills/swift-concurrency-expert/SKILL.md +105 -0
- package/.local/skills/swift-concurrency-expert/agents/openai.yaml +4 -0
- package/.local/skills/swift-concurrency-expert/references/approachable-concurrency.md +63 -0
- package/.local/skills/swift-concurrency-expert/references/swift-6-2-concurrency.md +272 -0
- package/.local/skills/swift-concurrency-expert/references/swiftui-concurrency-tour-wwdc.md +33 -0
- package/.local/skills/swiftui-expert-skill/SKILL.md +162 -0
- package/.local/skills/swiftui-expert-skill/references/accessibility-patterns.md +215 -0
- package/.local/skills/swiftui-expert-skill/references/animation-advanced.md +403 -0
- package/.local/skills/swiftui-expert-skill/references/animation-basics.md +284 -0
- package/.local/skills/swiftui-expert-skill/references/animation-transitions.md +326 -0
- package/.local/skills/swiftui-expert-skill/references/charts-accessibility.md +135 -0
- package/.local/skills/swiftui-expert-skill/references/charts.md +602 -0
- package/.local/skills/swiftui-expert-skill/references/focus-patterns.md +299 -0
- package/.local/skills/swiftui-expert-skill/references/image-optimization.md +203 -0
- package/.local/skills/swiftui-expert-skill/references/latest-apis.md +488 -0
- package/.local/skills/swiftui-expert-skill/references/layout-best-practices.md +266 -0
- package/.local/skills/swiftui-expert-skill/references/liquid-glass.md +423 -0
- package/.local/skills/swiftui-expert-skill/references/list-patterns.md +446 -0
- package/.local/skills/swiftui-expert-skill/references/macos-scenes.md +318 -0
- package/.local/skills/swiftui-expert-skill/references/macos-views.md +357 -0
- package/.local/skills/swiftui-expert-skill/references/macos-window-styling.md +303 -0
- package/.local/skills/swiftui-expert-skill/references/performance-patterns.md +403 -0
- package/.local/skills/swiftui-expert-skill/references/scroll-patterns.md +293 -0
- package/.local/skills/swiftui-expert-skill/references/sheet-navigation-patterns.md +363 -0
- package/.local/skills/swiftui-expert-skill/references/state-management.md +388 -0
- package/.local/skills/swiftui-expert-skill/references/text-patterns.md +32 -0
- package/.local/skills/swiftui-expert-skill/references/trace-analysis.md +295 -0
- package/.local/skills/swiftui-expert-skill/references/trace-recording.md +134 -0
- package/.local/skills/swiftui-expert-skill/references/view-structure.md +780 -0
- package/.local/skills/swiftui-expert-skill/scripts/__pycache__/analyze_trace.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/__pycache__/record_trace.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/analyze_trace.py +301 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__init__.py +1 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/__init__.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/causes.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/correlate.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/events.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/hangs.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/hitches.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/summary.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/swiftui.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/time_profiler.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/xctrace.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/xml_utils.cpython-313.pyc +0 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/causes.py +187 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/correlate.py +179 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/events.py +291 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/hangs.py +108 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/hitches.py +145 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/summary.py +243 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/swiftui.py +195 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/time_profiler.py +135 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/xctrace.py +117 -0
- package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/xml_utils.py +224 -0
- package/.local/skills/swiftui-expert-skill/scripts/record_trace.py +252 -0
- package/.local/skills/swiftui-liquid-glass/SKILL.md +90 -0
- package/.local/skills/swiftui-liquid-glass/agents/openai.yaml +4 -0
- package/.local/skills/swiftui-liquid-glass/references/liquid-glass.md +280 -0
- package/.local/skills/swiftui-performance-audit/SKILL.md +106 -0
- package/.local/skills/swiftui-performance-audit/agents/openai.yaml +4 -0
- package/.local/skills/swiftui-performance-audit/references/code-smells.md +150 -0
- package/.local/skills/swiftui-performance-audit/references/demystify-swiftui-performance-wwdc23.md +46 -0
- package/.local/skills/swiftui-performance-audit/references/optimizing-swiftui-performance-instruments.md +29 -0
- package/.local/skills/swiftui-performance-audit/references/profiling-intake.md +44 -0
- package/.local/skills/swiftui-performance-audit/references/report-template.md +47 -0
- package/.local/skills/swiftui-performance-audit/references/understanding-hangs-in-your-app.md +33 -0
- package/.local/skills/swiftui-performance-audit/references/understanding-improving-swiftui-performance.md +52 -0
- package/.local/skills/swiftui-pro/SKILL.md +108 -0
- package/.local/skills/swiftui-pro/agents/openai.yaml +10 -0
- package/.local/skills/swiftui-pro/assets/swiftui-pro-icon.png +0 -0
- package/.local/skills/swiftui-pro/assets/swiftui-pro-icon.svg +29 -0
- package/.local/skills/swiftui-pro/references/accessibility.md +13 -0
- package/.local/skills/swiftui-pro/references/api.md +39 -0
- package/.local/skills/swiftui-pro/references/data.md +43 -0
- package/.local/skills/swiftui-pro/references/design.md +32 -0
- package/.local/skills/swiftui-pro/references/hygiene.md +9 -0
- package/.local/skills/swiftui-pro/references/navigation.md +14 -0
- package/.local/skills/swiftui-pro/references/performance.md +46 -0
- package/.local/skills/swiftui-pro/references/swift.md +56 -0
- package/.local/skills/swiftui-pro/references/views.md +36 -0
- package/.local/skills/swiftui-ui-patterns/SKILL.md +95 -0
- package/.local/skills/swiftui-ui-patterns/agents/openai.yaml +4 -0
- package/.local/skills/swiftui-ui-patterns/references/app-wiring.md +201 -0
- package/.local/skills/swiftui-ui-patterns/references/async-state.md +96 -0
- package/.local/skills/swiftui-ui-patterns/references/components-index.md +50 -0
- package/.local/skills/swiftui-ui-patterns/references/controls.md +57 -0
- package/.local/skills/swiftui-ui-patterns/references/deeplinks.md +66 -0
- package/.local/skills/swiftui-ui-patterns/references/focus.md +90 -0
- package/.local/skills/swiftui-ui-patterns/references/form.md +97 -0
- package/.local/skills/swiftui-ui-patterns/references/grids.md +71 -0
- package/.local/skills/swiftui-ui-patterns/references/haptics.md +71 -0
- package/.local/skills/swiftui-ui-patterns/references/input-toolbar.md +51 -0
- package/.local/skills/swiftui-ui-patterns/references/lightweight-clients.md +93 -0
- package/.local/skills/swiftui-ui-patterns/references/list.md +86 -0
- package/.local/skills/swiftui-ui-patterns/references/loading-placeholders.md +38 -0
- package/.local/skills/swiftui-ui-patterns/references/macos-settings.md +71 -0
- package/.local/skills/swiftui-ui-patterns/references/matched-transitions.md +59 -0
- package/.local/skills/swiftui-ui-patterns/references/media.md +73 -0
- package/.local/skills/swiftui-ui-patterns/references/menu-bar.md +101 -0
- package/.local/skills/swiftui-ui-patterns/references/navigationstack.md +159 -0
- package/.local/skills/swiftui-ui-patterns/references/overlay.md +45 -0
- package/.local/skills/swiftui-ui-patterns/references/performance.md +62 -0
- package/.local/skills/swiftui-ui-patterns/references/previews.md +48 -0
- package/.local/skills/swiftui-ui-patterns/references/scroll-reveal.md +133 -0
- package/.local/skills/swiftui-ui-patterns/references/scrollview.md +87 -0
- package/.local/skills/swiftui-ui-patterns/references/searchable.md +71 -0
- package/.local/skills/swiftui-ui-patterns/references/sheets.md +155 -0
- package/.local/skills/swiftui-ui-patterns/references/split-views.md +72 -0
- package/.local/skills/swiftui-ui-patterns/references/tabview.md +114 -0
- package/.local/skills/swiftui-ui-patterns/references/theming.md +71 -0
- package/.local/skills/swiftui-ui-patterns/references/title-menus.md +93 -0
- package/.local/skills/swiftui-ui-patterns/references/top-bar.md +49 -0
- package/.local/skills/swiftui-view-refactor/SKILL.md +202 -0
- package/.local/skills/swiftui-view-refactor/agents/openai.yaml +4 -0
- package/.local/skills/swiftui-view-refactor/references/mv-patterns.md +161 -0
- package/.omc-curation/ecc-selection.json +80 -0
- package/.omc-curation/governance.json +113 -0
- package/.omc-curation/sources.lock.json +25 -0
- package/README.md +69 -4
- package/bundled/manifest.json +5 -5
- package/bundled/upstream/anthropic-skills/.omc-source/bundle.json +18 -0
- package/bundled/upstream/anthropic-skills/.omc-source/provenance.json +399 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/SKILL.md +18 -17
- package/bundled/upstream/anthropic-skills/skills/claude-api/curl/examples.md +9 -9
- package/bundled/upstream/anthropic-skills/skills/claude-api/curl/managed-agents.md +4 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/go/managed-agents/README.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/java/claude-api.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/java/managed-agents/README.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/php/claude-api.md +10 -10
- package/bundled/upstream/anthropic-skills/skills/claude-api/php/managed-agents/README.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/README.md +16 -16
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/batches.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/files-api.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/streaming.md +7 -7
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/tool-use.md +19 -19
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/managed-agents/README.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/claude-api.md +4 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/managed-agents/README.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/error-codes.md +5 -5
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/live-sources.md +3 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-api-reference.md +10 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-core.md +19 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-environments.md +6 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-multiagent.md +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-onboarding.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-overview.md +3 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-self-hosted-sandboxes.md +173 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-tools.md +10 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/model-migration.md +113 -13
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/models.md +14 -11
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/prompt-caching.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/tool-use-concepts.md +4 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/README.md +15 -15
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/batches.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/files-api.md +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/streaming.md +5 -5
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/tool-use.md +15 -15
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/managed-agents/README.md +3 -3
- package/bundled/upstream/ecc/.omc-source/bundle.json +2 -1
- package/bundled/upstream/ecc/.omc-source/last-plan-apply.json +108 -24
- package/bundled/upstream/ecc/.omc-source/manifests/.claude-plugin/marketplace.json +3 -3
- package/bundled/upstream/ecc/.omc-source/provenance.json +563 -0
- package/bundled/upstream/ecc/agents/marketing-agent.md +159 -0
- package/bundled/upstream/ecc/agents/react-build-resolver.md +215 -0
- package/bundled/upstream/ecc/agents/react-reviewer.md +167 -0
- package/bundled/upstream/ecc/agents/typescript-reviewer.md +3 -0
- package/bundled/upstream/ecc/commands/harness-audit.md +17 -10
- package/bundled/upstream/ecc/commands/marketing-campaign.md +129 -0
- package/bundled/upstream/ecc/commands/react-build.md +187 -0
- package/bundled/upstream/ecc/commands/react-review.md +170 -0
- package/bundled/upstream/ecc/commands/react-test.md +265 -0
- package/bundled/upstream/ecc/skills/benchmark-optimization-loop/SKILL.md +69 -0
- package/bundled/upstream/ecc/skills/blender-motion-state-inspection/SKILL.md +164 -0
- package/bundled/upstream/ecc/skills/canary-watch/SKILL.md +9 -1
- package/bundled/upstream/ecc/skills/continuous-learning-v2/hooks/observe.sh +31 -9
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/detect-project.sh +38 -4
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/instinct-cli.py +319 -12
- package/bundled/upstream/ecc/skills/data-throughput-accelerator/SKILL.md +72 -0
- package/bundled/upstream/ecc/skills/dynamic-workflow-mode/SKILL.md +123 -0
- package/bundled/upstream/ecc/skills/frontend-a11y/SKILL.md +446 -0
- package/bundled/upstream/ecc/skills/ito-basket-compare/SKILL.md +63 -0
- package/bundled/upstream/ecc/skills/ito-data-atlas-agent/SKILL.md +63 -0
- package/bundled/upstream/ecc/skills/ito-market-intelligence/SKILL.md +60 -0
- package/bundled/upstream/ecc/skills/ito-trade-planner/SKILL.md +67 -0
- package/bundled/upstream/ecc/skills/latency-critical-systems/SKILL.md +73 -0
- package/bundled/upstream/ecc/skills/marketing-campaign/SKILL.md +113 -0
- package/bundled/upstream/ecc/skills/nextjs-turbopack/SKILL.md +13 -0
- package/bundled/upstream/ecc/skills/parallel-execution-optimizer/SKILL.md +72 -0
- package/bundled/upstream/ecc/skills/prediction-market-oracle-research/SKILL.md +63 -0
- package/bundled/upstream/ecc/skills/prediction-market-risk-review/SKILL.md +60 -0
- package/bundled/upstream/ecc/skills/react-patterns/SKILL.md +341 -0
- package/bundled/upstream/ecc/skills/react-performance/SKILL.md +574 -0
- package/bundled/upstream/ecc/skills/react-testing/SKILL.md +423 -0
- package/bundled/upstream/ecc/skills/recsys-pipeline-architect/SKILL.md +114 -0
- package/bundled/upstream/ecc/skills/recursive-decision-ledger/SKILL.md +79 -0
- package/bundled/upstream/ecc/skills/social-publisher/SKILL.md +115 -0
- package/bundled/upstream/ecc/skills/team-agent-orchestration/SKILL.md +110 -0
- package/bundled/upstream/ecc/skills/uncloud/SKILL.md +343 -0
- package/bundled/upstream/ecc/skills/windows-desktop-e2e/SKILL.md +99 -0
- package/bundled/upstream/oh-my-claudecode/.omc-source/bundle.json +2 -1
- package/bundled/upstream/oh-my-claudecode/.omc-source/provenance.json +116 -0
- package/bundled/upstream/oh-my-claudecode/skills/autopilot/SKILL.md +7 -0
- package/bundled/upstream/oh-my-claudecode/skills/cancel/SKILL.md +1 -0
- package/bundled/upstream/oh-my-claudecode/skills/deep-interview/SKILL.md +39 -5
- package/bundled/upstream/oh-my-claudecode/skills/hud/SKILL.md +1 -0
- package/bundled/upstream/oh-my-claudecode/skills/local-build-reminder/SKILL.md +78 -0
- package/bundled/upstream/oh-my-claudecode/skills/omc-doctor/SKILL.md +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/SKILL.md +26 -10
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/01-install-claude-md.md +3 -3
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/02-configure.md +6 -4
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/03-integrations.md +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/04-welcome.md +2 -2
- package/bundled/upstream/oh-my-claudecode/skills/omc-teams/SKILL.md +6 -6
- package/bundled/upstream/oh-my-claudecode/skills/plan/SKILL.md +44 -32
- package/bundled/upstream/oh-my-claudecode/skills/ralph/SKILL.md +45 -21
- package/bundled/upstream/oh-my-claudecode/skills/ralplan/SKILL.md +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/self-improve/SKILL.md +7 -0
- package/bundled/upstream/oh-my-claudecode/skills/self-improve/scripts/resolve-paths.mjs +39 -15
- package/bundled/upstream/oh-my-claudecode/skills/team/SKILL.md +132 -90
- package/bundled/upstream/oh-my-claudecode/skills/ultragoal/SKILL.md +93 -0
- package/bundled/upstream/oh-my-claudecode/skills/ultraqa/SKILL.md +28 -13
- package/bundled/upstream/oh-my-claudecode/skills/ultrawork/SKILL.md +7 -0
- package/bundled/upstream/superpowers/.omc-source/bundle.json +2 -1
- package/bundled/upstream/superpowers/.omc-source/provenance.json +63 -0
- package/package.json +2 -1
- package/src/catalog/source-catalog.js +10 -4
- package/src/cli/index.js +4 -0
- package/src/cli/plan.js +14 -2
- package/src/cli/setup.js +52 -13
- package/src/cli/skill.js +1 -1
- package/src/cli/source.js +265 -14
- package/src/config/sources.js +67 -1
- package/src/merge/content-patch.js +84 -0
- package/templates/merge-config.json +1 -8
- package/bundled/upstream/ecc/skills/strategic-compact/suggest-compact.sh +0 -54
package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/tool-use.md
CHANGED
|
@@ -30,7 +30,7 @@ const getWeather = betaZodTool({
|
|
|
30
30
|
|
|
31
31
|
// The tool runner handles the agentic loop and returns the final message
|
|
32
32
|
const finalMessage = await client.beta.messages.toolRunner({
|
|
33
|
-
model: "claude-opus-4-
|
|
33
|
+
model: "claude-opus-4-8",
|
|
34
34
|
max_tokens: 16000,
|
|
35
35
|
tools: [getWeather],
|
|
36
36
|
messages: [{ role: "user", content: "What's the weather in Paris?" }],
|
|
@@ -61,7 +61,7 @@ let messages: Anthropic.MessageParam[] = [{ role: "user", content: userInput }];
|
|
|
61
61
|
|
|
62
62
|
while (true) {
|
|
63
63
|
const response = await client.messages.create({
|
|
64
|
-
model: "claude-opus-4-
|
|
64
|
+
model: "claude-opus-4-8",
|
|
65
65
|
max_tokens: 16000,
|
|
66
66
|
tools: tools,
|
|
67
67
|
messages: messages,
|
|
@@ -108,7 +108,7 @@ let messages: Anthropic.MessageParam[] = [{ role: "user", content: userInput }];
|
|
|
108
108
|
|
|
109
109
|
while (true) {
|
|
110
110
|
const stream = client.messages.stream({
|
|
111
|
-
model: "claude-opus-4-
|
|
111
|
+
model: "claude-opus-4-8",
|
|
112
112
|
max_tokens: 64000,
|
|
113
113
|
tools,
|
|
114
114
|
messages,
|
|
@@ -163,7 +163,7 @@ while (true) {
|
|
|
163
163
|
|
|
164
164
|
```typescript
|
|
165
165
|
const response = await client.messages.create({
|
|
166
|
-
model: "claude-opus-4-
|
|
166
|
+
model: "claude-opus-4-8",
|
|
167
167
|
max_tokens: 16000,
|
|
168
168
|
tools: tools,
|
|
169
169
|
messages: [{ role: "user", content: "What's the weather in Paris?" }],
|
|
@@ -174,7 +174,7 @@ for (const block of response.content) {
|
|
|
174
174
|
const result = await executeTool(block.name, block.input);
|
|
175
175
|
|
|
176
176
|
const followup = await client.messages.create({
|
|
177
|
-
model: "claude-opus-4-
|
|
177
|
+
model: "claude-opus-4-8",
|
|
178
178
|
max_tokens: 16000,
|
|
179
179
|
tools: tools,
|
|
180
180
|
messages: [
|
|
@@ -198,7 +198,7 @@ for (const block of response.content) {
|
|
|
198
198
|
|
|
199
199
|
```typescript
|
|
200
200
|
const response = await client.messages.create({
|
|
201
|
-
model: "claude-opus-4-
|
|
201
|
+
model: "claude-opus-4-8",
|
|
202
202
|
max_tokens: 16000,
|
|
203
203
|
tools: tools,
|
|
204
204
|
tool_choice: { type: "tool", name: "get_weather" },
|
|
@@ -217,7 +217,7 @@ Version-suffixed `type` literals; `name` is fixed per interface. Pass plain obje
|
|
|
217
217
|
```typescript
|
|
218
218
|
// ✓ let inference work — no annotation
|
|
219
219
|
const response = await client.messages.create({
|
|
220
|
-
model: "claude-opus-4-
|
|
220
|
+
model: "claude-opus-4-8",
|
|
221
221
|
max_tokens: 16000,
|
|
222
222
|
tools: [
|
|
223
223
|
{ type: "text_editor_20250728", name: "str_replace_based_edit_tool" },
|
|
@@ -257,7 +257,7 @@ import Anthropic from "@anthropic-ai/sdk";
|
|
|
257
257
|
const client = new Anthropic();
|
|
258
258
|
|
|
259
259
|
const response = await client.messages.create({
|
|
260
|
-
model: "claude-opus-4-
|
|
260
|
+
model: "claude-opus-4-8",
|
|
261
261
|
max_tokens: 16000,
|
|
262
262
|
messages: [
|
|
263
263
|
{
|
|
@@ -305,7 +305,7 @@ const uploaded = await client.beta.files.upload({
|
|
|
305
305
|
// Code execution is GA; Files API is still beta (pass via RequestOptions)
|
|
306
306
|
const response = await client.messages.create(
|
|
307
307
|
{
|
|
308
|
-
model: "claude-opus-4-
|
|
308
|
+
model: "claude-opus-4-8",
|
|
309
309
|
max_tokens: 16000,
|
|
310
310
|
messages: [
|
|
311
311
|
{
|
|
@@ -365,7 +365,7 @@ for (const block of response.content) {
|
|
|
365
365
|
```typescript
|
|
366
366
|
// First request: set up environment
|
|
367
367
|
const response1 = await client.messages.create({
|
|
368
|
-
model: "claude-opus-4-
|
|
368
|
+
model: "claude-opus-4-8",
|
|
369
369
|
max_tokens: 16000,
|
|
370
370
|
messages: [
|
|
371
371
|
{
|
|
@@ -382,7 +382,7 @@ const containerId = response1.container!.id;
|
|
|
382
382
|
|
|
383
383
|
const response2 = await client.messages.create({
|
|
384
384
|
container: containerId,
|
|
385
|
-
model: "claude-opus-4-
|
|
385
|
+
model: "claude-opus-4-8",
|
|
386
386
|
max_tokens: 16000,
|
|
387
387
|
messages: [
|
|
388
388
|
{
|
|
@@ -402,7 +402,7 @@ const response2 = await client.messages.create({
|
|
|
402
402
|
|
|
403
403
|
```typescript
|
|
404
404
|
const response = await client.messages.create({
|
|
405
|
-
model: "claude-opus-4-
|
|
405
|
+
model: "claude-opus-4-8",
|
|
406
406
|
max_tokens: 16000,
|
|
407
407
|
messages: [
|
|
408
408
|
{
|
|
@@ -436,7 +436,7 @@ const handlers: MemoryToolHandlers = {
|
|
|
436
436
|
const memory = betaMemoryTool(handlers);
|
|
437
437
|
|
|
438
438
|
const runner = client.beta.messages.toolRunner({
|
|
439
|
-
model: "claude-opus-4-
|
|
439
|
+
model: "claude-opus-4-8",
|
|
440
440
|
max_tokens: 16000,
|
|
441
441
|
tools: [memory],
|
|
442
442
|
messages: [{ role: "user", content: "Remember my preferences" }],
|
|
@@ -473,7 +473,7 @@ const ContactInfoSchema = z.object({
|
|
|
473
473
|
const client = new Anthropic();
|
|
474
474
|
|
|
475
475
|
const response = await client.messages.parse({
|
|
476
|
-
model: "claude-opus-4-
|
|
476
|
+
model: "claude-opus-4-8",
|
|
477
477
|
max_tokens: 16000,
|
|
478
478
|
messages: [
|
|
479
479
|
{
|
|
@@ -495,7 +495,7 @@ console.log(response.parsed_output!.name); // "Jane Doe"
|
|
|
495
495
|
|
|
496
496
|
```typescript
|
|
497
497
|
const response = await client.messages.create({
|
|
498
|
-
model: "claude-opus-4-
|
|
498
|
+
model: "claude-opus-4-8",
|
|
499
499
|
max_tokens: 16000,
|
|
500
500
|
messages: [
|
|
501
501
|
{
|
package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/managed-agents/README.md
CHANGED
|
@@ -52,7 +52,7 @@ console.log(environment.id); // env_...
|
|
|
52
52
|
const agent = await client.beta.agents.create(
|
|
53
53
|
{
|
|
54
54
|
name: "Coding Assistant",
|
|
55
|
-
model: "claude-opus-4-
|
|
55
|
+
model: "claude-opus-4-8",
|
|
56
56
|
tools: [{ type: "agent_toolset_20260401", default_config: { enabled: true } }],
|
|
57
57
|
},
|
|
58
58
|
);
|
|
@@ -73,7 +73,7 @@ console.log(session.id, session.status);
|
|
|
73
73
|
const agent = await client.beta.agents.create(
|
|
74
74
|
{
|
|
75
75
|
name: "Code Reviewer",
|
|
76
|
-
model: "claude-opus-4-
|
|
76
|
+
model: "claude-opus-4-8",
|
|
77
77
|
system: "You are a senior code reviewer.",
|
|
78
78
|
tools: [
|
|
79
79
|
{ type: "agent_toolset_20260401", default_config: { enabled: true } },
|
|
@@ -338,7 +338,7 @@ await client.beta.sessions.archive("sesn_011CZxAbc123Def456");
|
|
|
338
338
|
// Agent declares MCP server (no auth here — auth goes in a vault)
|
|
339
339
|
const agent = await client.beta.agents.create({
|
|
340
340
|
name: "MCP Agent",
|
|
341
|
-
model: "claude-opus-4-
|
|
341
|
+
model: "claude-opus-4-8",
|
|
342
342
|
mcp_servers: [
|
|
343
343
|
{ type: "url", name: "my-tools", url: "https://my-mcp-server.example.com/sse" },
|
|
344
344
|
],
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"syncedAt": "2026-
|
|
2
|
+
"syncedAt": "2026-06-05T08:01:28.154Z",
|
|
3
3
|
"sourceName": "ecc",
|
|
4
4
|
"remote": "https://github.com/affaan-m/everything-claude-code.git",
|
|
5
5
|
"ref": "main",
|
|
6
|
+
"commit": "bc8e12bb80c904a5a9864797ef1fd1212aa82f3d",
|
|
6
7
|
"kind": "distribution-repo",
|
|
7
8
|
"harnesses": [
|
|
8
9
|
"claude"
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"appliedAt": "2026-
|
|
2
|
+
"appliedAt": "2026-06-05T07:35:27.723Z",
|
|
3
3
|
"plan": {
|
|
4
4
|
"sourceName": "ecc",
|
|
5
5
|
"kind": "distribution-repo",
|
|
6
6
|
"profile": "claude-runtime",
|
|
7
|
-
"installMode": "
|
|
7
|
+
"installMode": "auto",
|
|
8
8
|
"actions": [
|
|
9
9
|
{
|
|
10
10
|
"type": "install-artifact",
|
|
11
11
|
"artifactType": "agents",
|
|
12
12
|
"adapter": "flat-dir-adapter",
|
|
13
13
|
"source": "/Users/WangQiao/Desktop/github/ios-dev/ZeroNet-Space/openSource/claudecode-omc/.upstream/ecc/agents",
|
|
14
|
-
"count":
|
|
14
|
+
"count": 63,
|
|
15
15
|
"itemNames": [
|
|
16
16
|
"a11y-architect",
|
|
17
17
|
"architect",
|
|
@@ -28,22 +28,33 @@
|
|
|
28
28
|
"csharp-reviewer",
|
|
29
29
|
"dart-build-resolver",
|
|
30
30
|
"database-reviewer",
|
|
31
|
+
"django-build-resolver",
|
|
32
|
+
"django-reviewer",
|
|
31
33
|
"doc-updater",
|
|
32
34
|
"docs-lookup",
|
|
33
35
|
"e2e-runner",
|
|
36
|
+
"fastapi-reviewer",
|
|
34
37
|
"flutter-reviewer",
|
|
38
|
+
"fsharp-reviewer",
|
|
35
39
|
"gan-evaluator",
|
|
36
40
|
"gan-generator",
|
|
37
41
|
"gan-planner",
|
|
38
42
|
"go-build-resolver",
|
|
39
43
|
"go-reviewer",
|
|
44
|
+
"harmonyos-app-resolver",
|
|
40
45
|
"harness-optimizer",
|
|
41
46
|
"healthcare-reviewer",
|
|
47
|
+
"homelab-architect",
|
|
42
48
|
"java-build-resolver",
|
|
43
49
|
"java-reviewer",
|
|
44
50
|
"kotlin-build-resolver",
|
|
45
51
|
"kotlin-reviewer",
|
|
46
52
|
"loop-operator",
|
|
53
|
+
"marketing-agent",
|
|
54
|
+
"mle-reviewer",
|
|
55
|
+
"network-architect",
|
|
56
|
+
"network-config-reviewer",
|
|
57
|
+
"network-troubleshooter",
|
|
47
58
|
"opensource-forker",
|
|
48
59
|
"opensource-packager",
|
|
49
60
|
"opensource-sanitizer",
|
|
@@ -52,12 +63,16 @@
|
|
|
52
63
|
"pr-test-analyzer",
|
|
53
64
|
"python-reviewer",
|
|
54
65
|
"pytorch-build-resolver",
|
|
66
|
+
"react-build-resolver",
|
|
67
|
+
"react-reviewer",
|
|
55
68
|
"refactor-cleaner",
|
|
56
69
|
"rust-build-resolver",
|
|
57
70
|
"rust-reviewer",
|
|
58
71
|
"security-reviewer",
|
|
59
72
|
"seo-specialist",
|
|
60
73
|
"silent-failure-hunter",
|
|
74
|
+
"swift-build-resolver",
|
|
75
|
+
"swift-reviewer",
|
|
61
76
|
"tdd-guide",
|
|
62
77
|
"type-design-analyzer",
|
|
63
78
|
"typescript-reviewer"
|
|
@@ -70,21 +85,18 @@
|
|
|
70
85
|
"source": "/Users/WangQiao/Desktop/github/ios-dev/ZeroNet-Space/openSource/claudecode-omc/.upstream/ecc/commands",
|
|
71
86
|
"count": 79,
|
|
72
87
|
"itemNames": [
|
|
73
|
-
"agent-sort",
|
|
74
88
|
"aside",
|
|
89
|
+
"auto-update",
|
|
75
90
|
"build-fix",
|
|
76
91
|
"checkpoint",
|
|
77
|
-
"claw",
|
|
78
92
|
"code-review",
|
|
79
|
-
"
|
|
93
|
+
"cost-report",
|
|
80
94
|
"cpp-build",
|
|
81
95
|
"cpp-review",
|
|
82
96
|
"cpp-test",
|
|
83
|
-
"
|
|
84
|
-
"docs",
|
|
85
|
-
"e2e",
|
|
86
|
-
"eval",
|
|
97
|
+
"ecc-guide",
|
|
87
98
|
"evolve",
|
|
99
|
+
"fastapi-review",
|
|
88
100
|
"feature-dev",
|
|
89
101
|
"flutter-build",
|
|
90
102
|
"flutter-review",
|
|
@@ -111,18 +123,20 @@
|
|
|
111
123
|
"learn-eval",
|
|
112
124
|
"loop-start",
|
|
113
125
|
"loop-status",
|
|
126
|
+
"marketing-campaign",
|
|
114
127
|
"model-route",
|
|
115
128
|
"multi-backend",
|
|
116
129
|
"multi-execute",
|
|
117
130
|
"multi-frontend",
|
|
118
131
|
"multi-plan",
|
|
119
132
|
"multi-workflow",
|
|
120
|
-
"orchestrate",
|
|
121
133
|
"plan",
|
|
134
|
+
"plan-prd",
|
|
122
135
|
"pm2",
|
|
136
|
+
"pr",
|
|
137
|
+
"project-init",
|
|
123
138
|
"projects",
|
|
124
139
|
"promote",
|
|
125
|
-
"prompt-optimize",
|
|
126
140
|
"prp-commit",
|
|
127
141
|
"prp-implement",
|
|
128
142
|
"prp-plan",
|
|
@@ -131,24 +145,25 @@
|
|
|
131
145
|
"prune",
|
|
132
146
|
"python-review",
|
|
133
147
|
"quality-gate",
|
|
148
|
+
"react-build",
|
|
149
|
+
"react-review",
|
|
150
|
+
"react-test",
|
|
134
151
|
"refactor-clean",
|
|
135
152
|
"resume-session",
|
|
136
153
|
"review-pr",
|
|
137
|
-
"rules-distill",
|
|
138
154
|
"rust-build",
|
|
139
155
|
"rust-review",
|
|
140
156
|
"rust-test",
|
|
141
157
|
"santa-loop",
|
|
142
158
|
"save-session",
|
|
159
|
+
"security-scan",
|
|
143
160
|
"sessions",
|
|
144
161
|
"setup-pm",
|
|
145
162
|
"skill-create",
|
|
146
163
|
"skill-health",
|
|
147
|
-
"tdd",
|
|
148
164
|
"test-coverage",
|
|
149
165
|
"update-codemaps",
|
|
150
|
-
"update-docs"
|
|
151
|
-
"verify"
|
|
166
|
+
"update-docs"
|
|
152
167
|
]
|
|
153
168
|
},
|
|
154
169
|
{
|
|
@@ -156,18 +171,21 @@
|
|
|
156
171
|
"artifactType": "skills",
|
|
157
172
|
"adapter": "flat-dir-adapter",
|
|
158
173
|
"source": "/Users/WangQiao/Desktop/github/ios-dev/ZeroNet-Space/openSource/claudecode-omc/.upstream/ecc/skills",
|
|
159
|
-
"count":
|
|
174
|
+
"count": 250,
|
|
160
175
|
"itemNames": [
|
|
161
176
|
"accessibility",
|
|
177
|
+
"agent-architecture-audit",
|
|
162
178
|
"agent-eval",
|
|
163
179
|
"agent-harness-construction",
|
|
164
180
|
"agent-introspection-debugging",
|
|
165
181
|
"agent-payment-x402",
|
|
166
182
|
"agent-sort",
|
|
167
183
|
"agentic-engineering",
|
|
184
|
+
"agentic-os",
|
|
168
185
|
"ai-first-engineering",
|
|
169
186
|
"ai-regression-testing",
|
|
170
187
|
"android-clean-architecture",
|
|
188
|
+
"angular-developer",
|
|
171
189
|
"api-connector-builder",
|
|
172
190
|
"api-design",
|
|
173
191
|
"architecture-decision-records",
|
|
@@ -177,14 +195,16 @@
|
|
|
177
195
|
"autonomous-loops",
|
|
178
196
|
"backend-patterns",
|
|
179
197
|
"benchmark",
|
|
198
|
+
"benchmark-optimization-loop",
|
|
199
|
+
"blender-motion-state-inspection",
|
|
180
200
|
"blueprint",
|
|
181
201
|
"brand-voice",
|
|
182
202
|
"browser-qa",
|
|
183
203
|
"bun-runtime",
|
|
184
204
|
"canary-watch",
|
|
185
205
|
"carrier-relationship-management",
|
|
206
|
+
"cisco-ios-patterns",
|
|
186
207
|
"ck",
|
|
187
|
-
"claude-api",
|
|
188
208
|
"claude-devfleet",
|
|
189
209
|
"click-path-audit",
|
|
190
210
|
"clickhouse-io",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"continuous-learning",
|
|
202
222
|
"continuous-learning-v2",
|
|
203
223
|
"cost-aware-llm-pipeline",
|
|
224
|
+
"cost-tracking",
|
|
204
225
|
"council",
|
|
205
226
|
"cpp-coding-standards",
|
|
206
227
|
"cpp-testing",
|
|
@@ -211,11 +232,13 @@
|
|
|
211
232
|
"dart-flutter-patterns",
|
|
212
233
|
"dashboard-builder",
|
|
213
234
|
"data-scraper-agent",
|
|
235
|
+
"data-throughput-accelerator",
|
|
214
236
|
"database-migrations",
|
|
215
237
|
"deep-research",
|
|
216
238
|
"defi-amm-security",
|
|
217
239
|
"deployment-patterns",
|
|
218
240
|
"design-system",
|
|
241
|
+
"django-celery",
|
|
219
242
|
"django-patterns",
|
|
220
243
|
"django-security",
|
|
221
244
|
"django-tdd",
|
|
@@ -224,21 +247,28 @@
|
|
|
224
247
|
"docker-patterns",
|
|
225
248
|
"documentation-lookup",
|
|
226
249
|
"dotnet-patterns",
|
|
250
|
+
"dynamic-workflow-mode",
|
|
227
251
|
"e2e-testing",
|
|
252
|
+
"ecc-guide",
|
|
228
253
|
"ecc-tools-cost-audit",
|
|
229
254
|
"email-ops",
|
|
230
255
|
"energy-procurement",
|
|
231
256
|
"enterprise-agent-ops",
|
|
257
|
+
"error-handling",
|
|
232
258
|
"eval-harness",
|
|
233
259
|
"evm-token-decimals",
|
|
234
260
|
"exa-search",
|
|
235
261
|
"fal-ai-media",
|
|
262
|
+
"fastapi-patterns",
|
|
236
263
|
"finance-billing-ops",
|
|
264
|
+
"flox-environments",
|
|
237
265
|
"flutter-dart-code-review",
|
|
238
266
|
"foundation-models-on-device",
|
|
239
|
-
"frontend-
|
|
267
|
+
"frontend-a11y",
|
|
268
|
+
"frontend-design-direction",
|
|
240
269
|
"frontend-patterns",
|
|
241
270
|
"frontend-slides",
|
|
271
|
+
"fsharp-testing",
|
|
242
272
|
"gan-style-harness",
|
|
243
273
|
"gateguard",
|
|
244
274
|
"git-workflow",
|
|
@@ -250,13 +280,24 @@
|
|
|
250
280
|
"healthcare-emr-patterns",
|
|
251
281
|
"healthcare-eval-harness",
|
|
252
282
|
"healthcare-phi-compliance",
|
|
283
|
+
"hermes-imports",
|
|
253
284
|
"hexagonal-architecture",
|
|
254
285
|
"hipaa-compliance",
|
|
286
|
+
"homelab-network-readiness",
|
|
287
|
+
"homelab-network-setup",
|
|
288
|
+
"homelab-pihole-dns",
|
|
289
|
+
"homelab-vlan-segmentation",
|
|
290
|
+
"homelab-wireguard-vpn",
|
|
255
291
|
"hookify-rules",
|
|
256
292
|
"inventory-demand-planning",
|
|
257
293
|
"investor-materials",
|
|
258
294
|
"investor-outreach",
|
|
295
|
+
"ios-icon-gen",
|
|
259
296
|
"iterative-retrieval",
|
|
297
|
+
"ito-basket-compare",
|
|
298
|
+
"ito-data-atlas-agent",
|
|
299
|
+
"ito-market-intelligence",
|
|
300
|
+
"ito-trade-planner",
|
|
260
301
|
"java-coding-standards",
|
|
261
302
|
"jira-integration",
|
|
262
303
|
"jpa-patterns",
|
|
@@ -271,29 +312,48 @@
|
|
|
271
312
|
"laravel-security",
|
|
272
313
|
"laravel-tdd",
|
|
273
314
|
"laravel-verification",
|
|
315
|
+
"latency-critical-systems",
|
|
274
316
|
"lead-intelligence",
|
|
275
317
|
"liquid-glass-design",
|
|
276
318
|
"llm-trading-agent-security",
|
|
277
319
|
"logistics-exception-management",
|
|
320
|
+
"make-interfaces-feel-better",
|
|
278
321
|
"manim-video",
|
|
279
322
|
"market-research",
|
|
323
|
+
"marketing-campaign",
|
|
280
324
|
"mcp-server-patterns",
|
|
281
325
|
"messages-ops",
|
|
326
|
+
"mle-workflow",
|
|
327
|
+
"motion-advanced",
|
|
328
|
+
"motion-foundations",
|
|
329
|
+
"motion-patterns",
|
|
330
|
+
"motion-ui",
|
|
331
|
+
"mysql-patterns",
|
|
282
332
|
"nanoclaw-repl",
|
|
283
333
|
"nestjs-patterns",
|
|
334
|
+
"netmiko-ssh-automation",
|
|
335
|
+
"network-bgp-diagnostics",
|
|
336
|
+
"network-config-validation",
|
|
337
|
+
"network-interface-health",
|
|
284
338
|
"nextjs-turbopack",
|
|
285
339
|
"nodejs-keccak256",
|
|
286
340
|
"nutrient-document-processing",
|
|
287
341
|
"nuxt4-patterns",
|
|
288
342
|
"openclaw-persona-forge",
|
|
289
343
|
"opensource-pipeline",
|
|
344
|
+
"parallel-execution-optimizer",
|
|
290
345
|
"perl-patterns",
|
|
291
346
|
"perl-security",
|
|
292
347
|
"perl-testing",
|
|
348
|
+
"plan-orchestrate",
|
|
293
349
|
"plankton-code-quality",
|
|
294
350
|
"postgres-patterns",
|
|
351
|
+
"prediction-market-oracle-research",
|
|
352
|
+
"prediction-market-risk-review",
|
|
353
|
+
"prisma-patterns",
|
|
295
354
|
"product-capability",
|
|
296
355
|
"product-lens",
|
|
356
|
+
"production-audit",
|
|
297
357
|
"production-scheduling",
|
|
298
358
|
"project-flow-ops",
|
|
299
359
|
"prompt-optimizer",
|
|
@@ -301,7 +361,17 @@
|
|
|
301
361
|
"python-testing",
|
|
302
362
|
"pytorch-patterns",
|
|
303
363
|
"quality-nonconformance",
|
|
364
|
+
"quarkus-patterns",
|
|
365
|
+
"quarkus-security",
|
|
366
|
+
"quarkus-tdd",
|
|
367
|
+
"quarkus-verification",
|
|
304
368
|
"ralphinho-rfc-pipeline",
|
|
369
|
+
"react-patterns",
|
|
370
|
+
"react-performance",
|
|
371
|
+
"react-testing",
|
|
372
|
+
"recsys-pipeline-architect",
|
|
373
|
+
"recursive-decision-ledger",
|
|
374
|
+
"redis-patterns",
|
|
305
375
|
"regex-vs-llm-structured-text",
|
|
306
376
|
"remotion-video-creation",
|
|
307
377
|
"research-ops",
|
|
@@ -311,14 +381,21 @@
|
|
|
311
381
|
"rust-testing",
|
|
312
382
|
"safety-guard",
|
|
313
383
|
"santa-method",
|
|
384
|
+
"scientific-db-pubmed-database",
|
|
385
|
+
"scientific-db-uspto-database",
|
|
386
|
+
"scientific-pkg-gget",
|
|
387
|
+
"scientific-thinking-literature-review",
|
|
388
|
+
"scientific-thinking-scholar-evaluation",
|
|
314
389
|
"search-first",
|
|
315
390
|
"security-bounty-hunter",
|
|
316
391
|
"security-review",
|
|
317
392
|
"security-scan",
|
|
318
393
|
"seo",
|
|
319
394
|
"skill-comply",
|
|
395
|
+
"skill-scout",
|
|
320
396
|
"skill-stocktake",
|
|
321
397
|
"social-graph-ranker",
|
|
398
|
+
"social-publisher",
|
|
322
399
|
"springboot-patterns",
|
|
323
400
|
"springboot-security",
|
|
324
401
|
"springboot-tdd",
|
|
@@ -329,15 +406,21 @@
|
|
|
329
406
|
"swift-protocol-di-testing",
|
|
330
407
|
"swiftui-patterns",
|
|
331
408
|
"tdd-workflow",
|
|
409
|
+
"team-agent-orchestration",
|
|
332
410
|
"team-builder",
|
|
333
411
|
"terminal-ops",
|
|
412
|
+
"tinystruct-patterns",
|
|
334
413
|
"token-budget-advisor",
|
|
335
414
|
"ui-demo",
|
|
415
|
+
"ui-to-vue",
|
|
416
|
+
"uncloud",
|
|
336
417
|
"unified-notifications-ops",
|
|
337
418
|
"verification-loop",
|
|
338
419
|
"video-editing",
|
|
339
420
|
"videodb",
|
|
340
421
|
"visa-doc-translate",
|
|
422
|
+
"vite-patterns",
|
|
423
|
+
"windows-desktop-e2e",
|
|
341
424
|
"workspace-surface-audit",
|
|
342
425
|
"x-api"
|
|
343
426
|
]
|
|
@@ -373,19 +456,21 @@
|
|
|
373
456
|
"pr-test-analyzer",
|
|
374
457
|
"refactor-cleaner",
|
|
375
458
|
"silent-failure-hunter",
|
|
459
|
+
"swift-build-resolver",
|
|
460
|
+
"swift-reviewer",
|
|
376
461
|
"type-design-analyzer"
|
|
377
462
|
],
|
|
378
463
|
"commands": [
|
|
379
|
-
"agent-sort",
|
|
380
464
|
"aside",
|
|
381
465
|
"checkpoint",
|
|
382
|
-
"context-budget",
|
|
383
|
-
"eval",
|
|
384
466
|
"evolve",
|
|
385
467
|
"feature-dev",
|
|
386
468
|
"harness-audit",
|
|
469
|
+
"hookify",
|
|
470
|
+
"hookify-configure",
|
|
471
|
+
"hookify-help",
|
|
472
|
+
"hookify-list",
|
|
387
473
|
"model-route",
|
|
388
|
-
"prompt-optimize",
|
|
389
474
|
"prp-commit",
|
|
390
475
|
"prp-implement",
|
|
391
476
|
"prp-plan",
|
|
@@ -394,7 +479,6 @@
|
|
|
394
479
|
"prune",
|
|
395
480
|
"quality-gate",
|
|
396
481
|
"resume-session",
|
|
397
|
-
"rules-distill",
|
|
398
482
|
"save-session",
|
|
399
483
|
"sessions",
|
|
400
484
|
"update-codemaps",
|
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
"email": "me@affaanmustafa.com"
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
|
-
"description": "
|
|
8
|
+
"description": "Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows"
|
|
9
9
|
},
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "ecc",
|
|
13
13
|
"source": "./",
|
|
14
|
-
"description": "
|
|
14
|
+
"description": "Harness-native ECC operator layer - 63 agents, 251 skills, 79 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses",
|
|
15
15
|
"version": "2.0.0-rc.1",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "Affaan Mustafa",
|
|
18
18
|
"email": "me@affaanmustafa.com"
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://ecc.tools",
|
|
21
|
-
"repository": "https://github.com/affaan-m/
|
|
21
|
+
"repository": "https://github.com/affaan-m/ECC",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"keywords": [
|
|
24
24
|
"agents",
|