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
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
{
|
|
2
|
+
"syncedAt": "2026-06-05T08:00:45.198Z",
|
|
3
|
+
"sourceName": "anthropic-skills",
|
|
4
|
+
"remote": "https://github.com/anthropics/skills.git",
|
|
5
|
+
"ref": "main",
|
|
6
|
+
"commit": "da20c92503b2e8ff1cf28ca81a0df4673debdbf7",
|
|
7
|
+
"artifacts": {
|
|
8
|
+
"skills": {
|
|
9
|
+
"algorithmic-art/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
10
|
+
"algorithmic-art/SKILL.md": "sha256:3bc4092c09804853",
|
|
11
|
+
"algorithmic-art/templates/generator_template.js": "sha256:9ee0f1da52ef8f7b",
|
|
12
|
+
"algorithmic-art/templates/viewer.html": "sha256:86c79d7ce97d2599",
|
|
13
|
+
"brand-guidelines/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
14
|
+
"brand-guidelines/SKILL.md": "sha256:1120b3769e2985ce",
|
|
15
|
+
"canvas-design/canvas-fonts/ArsenalSC-OFL.txt": "sha256:8ddd61b18ba2c0d0",
|
|
16
|
+
"canvas-design/canvas-fonts/ArsenalSC-Regular.ttf": "sha256:65e6f89df58f68fd",
|
|
17
|
+
"canvas-design/canvas-fonts/BigShoulders-Bold.ttf": "sha256:b43bcd198b9fdf71",
|
|
18
|
+
"canvas-design/canvas-fonts/BigShoulders-OFL.txt": "sha256:fbc746aabf0eb184",
|
|
19
|
+
"canvas-design/canvas-fonts/BigShoulders-Regular.ttf": "sha256:18a879fc71978a44",
|
|
20
|
+
"canvas-design/canvas-fonts/Boldonse-OFL.txt": "sha256:45cc82ab4032273c",
|
|
21
|
+
"canvas-design/canvas-fonts/Boldonse-Regular.ttf": "sha256:cc2e540604565c0f",
|
|
22
|
+
"canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf": "sha256:a737b146fe0d77ff",
|
|
23
|
+
"canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt": "sha256:0e4f4eb8534bc66a",
|
|
24
|
+
"canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf": "sha256:972a6d098c9867ae",
|
|
25
|
+
"canvas-design/canvas-fonts/CrimsonPro-Bold.ttf": "sha256:48f191e38355c8db",
|
|
26
|
+
"canvas-design/canvas-fonts/CrimsonPro-Italic.ttf": "sha256:52318db3526b644e",
|
|
27
|
+
"canvas-design/canvas-fonts/CrimsonPro-OFL.txt": "sha256:35680d14547b6748",
|
|
28
|
+
"canvas-design/canvas-fonts/CrimsonPro-Regular.ttf": "sha256:48fad08cb1917a7b",
|
|
29
|
+
"canvas-design/canvas-fonts/DMMono-OFL.txt": "sha256:bfe7842fcb88323e",
|
|
30
|
+
"canvas-design/canvas-fonts/DMMono-Regular.ttf": "sha256:f98ada968dc3b6b2",
|
|
31
|
+
"canvas-design/canvas-fonts/EricaOne-OFL.txt": "sha256:e0de629968b52255",
|
|
32
|
+
"canvas-design/canvas-fonts/EricaOne-Regular.ttf": "sha256:db1d89e80e33a8a0",
|
|
33
|
+
"canvas-design/canvas-fonts/GeistMono-Bold.ttf": "sha256:75c0828d5c1ee44b",
|
|
34
|
+
"canvas-design/canvas-fonts/GeistMono-OFL.txt": "sha256:6a873c900f584109",
|
|
35
|
+
"canvas-design/canvas-fonts/GeistMono-Regular.ttf": "sha256:a55c1b51cda4afea",
|
|
36
|
+
"canvas-design/canvas-fonts/Gloock-OFL.txt": "sha256:c0a3f3125ac491ef",
|
|
37
|
+
"canvas-design/canvas-fonts/Gloock-Regular.ttf": "sha256:e86b4ce66dbd3f1f",
|
|
38
|
+
"canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf": "sha256:dbd2a2fb02457943",
|
|
39
|
+
"canvas-design/canvas-fonts/IBMPlexMono-OFL.txt": "sha256:5294ce778857e1eb",
|
|
40
|
+
"canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf": "sha256:ab08018ccd276b79",
|
|
41
|
+
"canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf": "sha256:b8d294e9b5c5a094",
|
|
42
|
+
"canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf": "sha256:da64b75f4284f53e",
|
|
43
|
+
"canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf": "sha256:b11f1048745e715a",
|
|
44
|
+
"canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf": "sha256:77cd233a2af8dc6b",
|
|
45
|
+
"canvas-design/canvas-fonts/InstrumentSans-Bold.ttf": "sha256:444f85bf1c4b0e1c",
|
|
46
|
+
"canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf": "sha256:3762f6cef95d6039",
|
|
47
|
+
"canvas-design/canvas-fonts/InstrumentSans-Italic.ttf": "sha256:78e85858e371b2cb",
|
|
48
|
+
"canvas-design/canvas-fonts/InstrumentSans-OFL.txt": "sha256:bf4dc6d13a8cccd4",
|
|
49
|
+
"canvas-design/canvas-fonts/InstrumentSans-Regular.ttf": "sha256:a22cb26e48fd79bc",
|
|
50
|
+
"canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf": "sha256:9c86e4d5a47b5022",
|
|
51
|
+
"canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf": "sha256:56ac3be03ac3ba28",
|
|
52
|
+
"canvas-design/canvas-fonts/Italiana-OFL.txt": "sha256:8373b11312ace78c",
|
|
53
|
+
"canvas-design/canvas-fonts/Italiana-Regular.ttf": "sha256:15c4dd6ab8cf4a29",
|
|
54
|
+
"canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf": "sha256:a2349098b9e45419",
|
|
55
|
+
"canvas-design/canvas-fonts/JetBrainsMono-OFL.txt": "sha256:a76abf002c49097d",
|
|
56
|
+
"canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf": "sha256:b6b1ff4ddefe36d7",
|
|
57
|
+
"canvas-design/canvas-fonts/Jura-Light.ttf": "sha256:c891a381df056b2c",
|
|
58
|
+
"canvas-design/canvas-fonts/Jura-Medium.ttf": "sha256:c72965cb732a9287",
|
|
59
|
+
"canvas-design/canvas-fonts/Jura-OFL.txt": "sha256:eaf9bdb675f6d87e",
|
|
60
|
+
"canvas-design/canvas-fonts/LibreBaskerville-OFL.txt": "sha256:55959eef5b0c3b2e",
|
|
61
|
+
"canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf": "sha256:2101302538d9e88a",
|
|
62
|
+
"canvas-design/canvas-fonts/Lora-Bold.ttf": "sha256:7d74015e950c2fb6",
|
|
63
|
+
"canvas-design/canvas-fonts/Lora-BoldItalic.ttf": "sha256:152f87e71f5ddb60",
|
|
64
|
+
"canvas-design/canvas-fonts/Lora-Italic.ttf": "sha256:be627e595184e8af",
|
|
65
|
+
"canvas-design/canvas-fonts/Lora-OFL.txt": "sha256:62e37a82d3f1ef2a",
|
|
66
|
+
"canvas-design/canvas-fonts/Lora-Regular.ttf": "sha256:7ed00e7c9cdf16ab",
|
|
67
|
+
"canvas-design/canvas-fonts/NationalPark-Bold.ttf": "sha256:69ac4c301c4a7233",
|
|
68
|
+
"canvas-design/canvas-fonts/NationalPark-OFL.txt": "sha256:81c6c71d83b5b45d",
|
|
69
|
+
"canvas-design/canvas-fonts/NationalPark-Regular.ttf": "sha256:a477338b7e18308d",
|
|
70
|
+
"canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt": "sha256:7c2a6970584ddad0",
|
|
71
|
+
"canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf": "sha256:d866f985896d3280",
|
|
72
|
+
"canvas-design/canvas-fonts/Outfit-Bold.ttf": "sha256:6654b93d21301ec6",
|
|
73
|
+
"canvas-design/canvas-fonts/Outfit-OFL.txt": "sha256:1945b62cd76da9a3",
|
|
74
|
+
"canvas-design/canvas-fonts/Outfit-Regular.ttf": "sha256:f24945365147c9e7",
|
|
75
|
+
"canvas-design/canvas-fonts/PixelifySans-Medium.ttf": "sha256:38397504f71c122b",
|
|
76
|
+
"canvas-design/canvas-fonts/PixelifySans-OFL.txt": "sha256:7f54d1d9f1ae1ba9",
|
|
77
|
+
"canvas-design/canvas-fonts/PoiretOne-OFL.txt": "sha256:2eaf541f7eb8b512",
|
|
78
|
+
"canvas-design/canvas-fonts/PoiretOne-Regular.ttf": "sha256:9cf265b139648b36",
|
|
79
|
+
"canvas-design/canvas-fonts/RedHatMono-Bold.ttf": "sha256:7ef48353f4be5ddb",
|
|
80
|
+
"canvas-design/canvas-fonts/RedHatMono-OFL.txt": "sha256:435fbfb7e66988b2",
|
|
81
|
+
"canvas-design/canvas-fonts/RedHatMono-Regular.ttf": "sha256:452fe826871b3753",
|
|
82
|
+
"canvas-design/canvas-fonts/Silkscreen-OFL.txt": "sha256:6b849745119bbe85",
|
|
83
|
+
"canvas-design/canvas-fonts/Silkscreen-Regular.ttf": "sha256:49567408600809e2",
|
|
84
|
+
"canvas-design/canvas-fonts/SmoochSans-Medium.ttf": "sha256:dd76e6e77cce82f8",
|
|
85
|
+
"canvas-design/canvas-fonts/SmoochSans-OFL.txt": "sha256:74c9c4eb88e89148",
|
|
86
|
+
"canvas-design/canvas-fonts/Tektur-Medium.ttf": "sha256:52bbe8c9b057b3d2",
|
|
87
|
+
"canvas-design/canvas-fonts/Tektur-OFL.txt": "sha256:3f1466cb5438f317",
|
|
88
|
+
"canvas-design/canvas-fonts/Tektur-Regular.ttf": "sha256:162e1b36c4718c5b",
|
|
89
|
+
"canvas-design/canvas-fonts/WorkSans-Bold.ttf": "sha256:240d125fc9f85613",
|
|
90
|
+
"canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf": "sha256:a5b2cad813df0aaa",
|
|
91
|
+
"canvas-design/canvas-fonts/WorkSans-Italic.ttf": "sha256:6b7f7002e0b0c8b2",
|
|
92
|
+
"canvas-design/canvas-fonts/WorkSans-OFL.txt": "sha256:ace8c22a3326318b",
|
|
93
|
+
"canvas-design/canvas-fonts/WorkSans-Regular.ttf": "sha256:e67985a843df0d3c",
|
|
94
|
+
"canvas-design/canvas-fonts/YoungSerif-OFL.txt": "sha256:cdcb8039606b40a0",
|
|
95
|
+
"canvas-design/canvas-fonts/YoungSerif-Regular.ttf": "sha256:f8dc08f77abad753",
|
|
96
|
+
"canvas-design/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
97
|
+
"canvas-design/SKILL.md": "sha256:a1f288079624402f",
|
|
98
|
+
"claude-api/csharp/claude-api.md": "sha256:c17ddeb20330f54d",
|
|
99
|
+
"claude-api/curl/examples.md": "sha256:da3221f4a256827a",
|
|
100
|
+
"claude-api/curl/managed-agents.md": "sha256:935281b92e4b8329",
|
|
101
|
+
"claude-api/go/claude-api.md": "sha256:79730feb26fde385",
|
|
102
|
+
"claude-api/go/managed-agents/README.md": "sha256:30759cc3c5804921",
|
|
103
|
+
"claude-api/java/claude-api.md": "sha256:fc9e721520e2acb6",
|
|
104
|
+
"claude-api/java/managed-agents/README.md": "sha256:c48defa56f7c2b86",
|
|
105
|
+
"claude-api/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
106
|
+
"claude-api/php/claude-api.md": "sha256:51de62aedc7de6ec",
|
|
107
|
+
"claude-api/php/managed-agents/README.md": "sha256:133a2c13d61c39ad",
|
|
108
|
+
"claude-api/python/claude-api/batches.md": "sha256:f17727c8c01aabd9",
|
|
109
|
+
"claude-api/python/claude-api/files-api.md": "sha256:ac6fb2389c1dcff8",
|
|
110
|
+
"claude-api/python/claude-api/README.md": "sha256:a76707d01f15b999",
|
|
111
|
+
"claude-api/python/claude-api/streaming.md": "sha256:28e0d86f75f68d38",
|
|
112
|
+
"claude-api/python/claude-api/tool-use.md": "sha256:490dc14dbaa0cf47",
|
|
113
|
+
"claude-api/python/managed-agents/README.md": "sha256:94326392147c6349",
|
|
114
|
+
"claude-api/ruby/claude-api.md": "sha256:4f7a55441820f86f",
|
|
115
|
+
"claude-api/ruby/managed-agents/README.md": "sha256:810a53abe00396ba",
|
|
116
|
+
"claude-api/shared/agent-design.md": "sha256:4801b81580e1251c",
|
|
117
|
+
"claude-api/shared/error-codes.md": "sha256:46d9d97146df1303",
|
|
118
|
+
"claude-api/shared/live-sources.md": "sha256:a6ef473b37306775",
|
|
119
|
+
"claude-api/shared/managed-agents-api-reference.md": "sha256:b5101280498f4bd3",
|
|
120
|
+
"claude-api/shared/managed-agents-client-patterns.md": "sha256:8fff1efb9c21f214",
|
|
121
|
+
"claude-api/shared/managed-agents-core.md": "sha256:7297ba379b48d8d9",
|
|
122
|
+
"claude-api/shared/managed-agents-environments.md": "sha256:dac00cd2d59e2e5f",
|
|
123
|
+
"claude-api/shared/managed-agents-events.md": "sha256:925de73f0b239811",
|
|
124
|
+
"claude-api/shared/managed-agents-memory.md": "sha256:1c2825364115ccf9",
|
|
125
|
+
"claude-api/shared/managed-agents-multiagent.md": "sha256:6f150526edf942ae",
|
|
126
|
+
"claude-api/shared/managed-agents-onboarding.md": "sha256:a0be94a83bc0c53a",
|
|
127
|
+
"claude-api/shared/managed-agents-outcomes.md": "sha256:bf195965dca27a07",
|
|
128
|
+
"claude-api/shared/managed-agents-overview.md": "sha256:868d31dd27e2cfb6",
|
|
129
|
+
"claude-api/shared/managed-agents-self-hosted-sandboxes.md": "sha256:94029ab7e8b92a68",
|
|
130
|
+
"claude-api/shared/managed-agents-tools.md": "sha256:b1af9746ee7df280",
|
|
131
|
+
"claude-api/shared/managed-agents-webhooks.md": "sha256:6fa05e6f8ae950e1",
|
|
132
|
+
"claude-api/shared/model-migration.md": "sha256:80680981ed2abe7e",
|
|
133
|
+
"claude-api/shared/models.md": "sha256:6eda98e3d5608c3b",
|
|
134
|
+
"claude-api/shared/prompt-caching.md": "sha256:2a6b865e5b9b48c1",
|
|
135
|
+
"claude-api/shared/tool-use-concepts.md": "sha256:6380bb00faa08369",
|
|
136
|
+
"claude-api/SKILL.md": "sha256:47d67884657fabc1",
|
|
137
|
+
"claude-api/typescript/claude-api/batches.md": "sha256:07e75f7e6864aa79",
|
|
138
|
+
"claude-api/typescript/claude-api/files-api.md": "sha256:0e70fae5742e78d9",
|
|
139
|
+
"claude-api/typescript/claude-api/README.md": "sha256:3cf6070dad10b32e",
|
|
140
|
+
"claude-api/typescript/claude-api/streaming.md": "sha256:ea02875e91a29566",
|
|
141
|
+
"claude-api/typescript/claude-api/tool-use.md": "sha256:320f17ca6909642a",
|
|
142
|
+
"claude-api/typescript/managed-agents/README.md": "sha256:a3762fcde7d6c28a",
|
|
143
|
+
"doc-coauthoring/SKILL.md": "sha256:2e47d78846faeea4",
|
|
144
|
+
"docx/LICENSE.txt": "sha256:79f6d8f5b427252f",
|
|
145
|
+
"docx/scripts/__init__.py": "sha256:01ba4719c80b6fe9",
|
|
146
|
+
"docx/scripts/accept_changes.py": "sha256:0c991d2bc7304a12",
|
|
147
|
+
"docx/scripts/comment.py": "sha256:e86e4e17ec580578",
|
|
148
|
+
"docx/scripts/office/helpers/__init__.py": "sha256:e3b0c44298fc1c14",
|
|
149
|
+
"docx/scripts/office/helpers/merge_runs.py": "sha256:7c40ed838b88639c",
|
|
150
|
+
"docx/scripts/office/helpers/simplify_redlines.py": "sha256:560cb55978a834c5",
|
|
151
|
+
"docx/scripts/office/pack.py": "sha256:b1800987e568261a",
|
|
152
|
+
"docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd": "sha256:9e0b7209fc69ab11",
|
|
153
|
+
"docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd": "sha256:451958454e8588df",
|
|
154
|
+
"docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd": "sha256:6de111e11403f7cd",
|
|
155
|
+
"docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd": "sha256:f565adfef5a50204",
|
|
156
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd": "sha256:41b93bd8857cc68b",
|
|
157
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd": "sha256:3fd0586f2637b98b",
|
|
158
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd": "sha256:29b254ee0d10414a",
|
|
159
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd": "sha256:5cb76dabd8b97d1e",
|
|
160
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd": "sha256:5375417f0f5394b8",
|
|
161
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd": "sha256:5d389d42befbebd9",
|
|
162
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd": "sha256:b4532b6d25883295",
|
|
163
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd": "sha256:bdad416b096b61d3",
|
|
164
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd": "sha256:d173c3e5d61e42e2",
|
|
165
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd": "sha256:3c6709101c6aaa82",
|
|
166
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd": "sha256:0b364451dc36a48d",
|
|
167
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd": "sha256:e2abacbb9a55ce13",
|
|
168
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd": "sha256:0ef4bb354ff44b92",
|
|
169
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd": "sha256:0d103b99a4a8652f",
|
|
170
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd": "sha256:9c085407751b9061",
|
|
171
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd": "sha256:bc92e36ccd233722",
|
|
172
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd": "sha256:7b5b7413e2c895b1",
|
|
173
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd": "sha256:3213ef1631606250",
|
|
174
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd": "sha256:12264f3c03d73831",
|
|
175
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd": "sha256:beffeed56945c22a",
|
|
176
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd": "sha256:f5ee623b08b6a669",
|
|
177
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd": "sha256:585bedc1313b4088",
|
|
178
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd": "sha256:133c9f64a5c5d573",
|
|
179
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd": "sha256:6bdeb169c3717eb0",
|
|
180
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd": "sha256:475dcae1e7d1ea46",
|
|
181
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd": "sha256:c2dd9f61f892deae",
|
|
182
|
+
"docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd": "sha256:a539aa2fb154fa50",
|
|
183
|
+
"docx/scripts/office/schemas/mce/mc.xsd": "sha256:3a37e461ecf5a867",
|
|
184
|
+
"docx/scripts/office/schemas/microsoft/wml-2010.xsd": "sha256:568b26ee156cb954",
|
|
185
|
+
"docx/scripts/office/schemas/microsoft/wml-2012.xsd": "sha256:0fa75578a000439a",
|
|
186
|
+
"docx/scripts/office/schemas/microsoft/wml-2018.xsd": "sha256:be0ff793a22dd313",
|
|
187
|
+
"docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd": "sha256:fddc2b880cabb900",
|
|
188
|
+
"docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd": "sha256:127ca209fa73d7cb",
|
|
189
|
+
"docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd": "sha256:842e7163409c8d74",
|
|
190
|
+
"docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd": "sha256:16f6f8072249f431",
|
|
191
|
+
"docx/scripts/office/soffice.py": "sha256:a3e21840e29e32f9",
|
|
192
|
+
"docx/scripts/office/unpack.py": "sha256:83f69cecc8791018",
|
|
193
|
+
"docx/scripts/office/validate.py": "sha256:1aef24f8e316965a",
|
|
194
|
+
"docx/scripts/office/validators/__init__.py": "sha256:83e0f035c5abea23",
|
|
195
|
+
"docx/scripts/office/validators/base.py": "sha256:d6358b67252df4db",
|
|
196
|
+
"docx/scripts/office/validators/docx.py": "sha256:0ef04ce86b2e6b6a",
|
|
197
|
+
"docx/scripts/office/validators/pptx.py": "sha256:f937961e62a5fa0d",
|
|
198
|
+
"docx/scripts/office/validators/redlining.py": "sha256:f4c33fdb9da0651d",
|
|
199
|
+
"docx/scripts/templates/comments.xml": "sha256:a08ba83ee8790ac9",
|
|
200
|
+
"docx/scripts/templates/commentsExtended.xml": "sha256:544eeecfeceed4b4",
|
|
201
|
+
"docx/scripts/templates/commentsExtensible.xml": "sha256:bad10b3283e6ad6e",
|
|
202
|
+
"docx/scripts/templates/commentsIds.xml": "sha256:db20f9616e004ec4",
|
|
203
|
+
"docx/scripts/templates/people.xml": "sha256:056f63aa1197fd8c",
|
|
204
|
+
"docx/SKILL.md": "sha256:cfbabd72b1aec7df",
|
|
205
|
+
"frontend-design/LICENSE.txt": "sha256:0d542e0c8804e39a",
|
|
206
|
+
"frontend-design/SKILL.md": "sha256:b81e2ff87ed8fa4d",
|
|
207
|
+
"internal-comms/examples/3p-updates.md": "sha256:087e4363c0f35137",
|
|
208
|
+
"internal-comms/examples/company-newsletter.md": "sha256:30f81cfbdb03858a",
|
|
209
|
+
"internal-comms/examples/faq-answers.md": "sha256:5ecd3356cd666693",
|
|
210
|
+
"internal-comms/examples/general-comms.md": "sha256:4d3a4bb198a77626",
|
|
211
|
+
"internal-comms/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
212
|
+
"internal-comms/SKILL.md": "sha256:067b7587a344a928",
|
|
213
|
+
"mcp-builder/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
214
|
+
"mcp-builder/reference/evaluation.md": "sha256:8c99479f8a2d22a6",
|
|
215
|
+
"mcp-builder/reference/mcp_best_practices.md": "sha256:80fb4369a349447c",
|
|
216
|
+
"mcp-builder/reference/node_mcp_server.md": "sha256:c3ba35a4f599dd53",
|
|
217
|
+
"mcp-builder/reference/python_mcp_server.md": "sha256:2da52f77e6751910",
|
|
218
|
+
"mcp-builder/scripts/connections.py": "sha256:9403668a20415687",
|
|
219
|
+
"mcp-builder/scripts/evaluation.py": "sha256:49ed1d17cdce5da1",
|
|
220
|
+
"mcp-builder/scripts/example_evaluation.xml": "sha256:9272b348ddcc4b06",
|
|
221
|
+
"mcp-builder/scripts/requirements.txt": "sha256:d5d7558b2368ecea",
|
|
222
|
+
"mcp-builder/SKILL.md": "sha256:0f4592dcb53cf2b5",
|
|
223
|
+
"pdf/forms.md": "sha256:9530b3f57034792e",
|
|
224
|
+
"pdf/LICENSE.txt": "sha256:79f6d8f5b427252f",
|
|
225
|
+
"pdf/reference.md": "sha256:03a5f964f8abecbb",
|
|
226
|
+
"pdf/scripts/check_bounding_boxes.py": "sha256:0ced522402dd7b3c",
|
|
227
|
+
"pdf/scripts/check_fillable_fields.py": "sha256:1fe10b9980a5493c",
|
|
228
|
+
"pdf/scripts/convert_pdf_to_images.py": "sha256:7f58e292a67e18a8",
|
|
229
|
+
"pdf/scripts/create_validation_image.py": "sha256:8fa9fd7962c9f940",
|
|
230
|
+
"pdf/scripts/extract_form_field_info.py": "sha256:bb235b36f497bbb1",
|
|
231
|
+
"pdf/scripts/extract_form_structure.py": "sha256:6814e3fe8f78c2b1",
|
|
232
|
+
"pdf/scripts/fill_fillable_fields.py": "sha256:d140872c2e92e41b",
|
|
233
|
+
"pdf/scripts/fill_pdf_form_with_annotations.py": "sha256:8a56e063a49ed53c",
|
|
234
|
+
"pdf/SKILL.md": "sha256:9f78b8359fbd4943",
|
|
235
|
+
"pptx/editing.md": "sha256:6cb47c3ab17e60b7",
|
|
236
|
+
"pptx/LICENSE.txt": "sha256:79f6d8f5b427252f",
|
|
237
|
+
"pptx/pptxgenjs.md": "sha256:9539534d92b71708",
|
|
238
|
+
"pptx/scripts/__init__.py": "sha256:e3b0c44298fc1c14",
|
|
239
|
+
"pptx/scripts/add_slide.py": "sha256:04233ba3932c6b86",
|
|
240
|
+
"pptx/scripts/clean.py": "sha256:3e3966a17f488a1d",
|
|
241
|
+
"pptx/scripts/office/helpers/__init__.py": "sha256:e3b0c44298fc1c14",
|
|
242
|
+
"pptx/scripts/office/helpers/merge_runs.py": "sha256:7c40ed838b88639c",
|
|
243
|
+
"pptx/scripts/office/helpers/simplify_redlines.py": "sha256:560cb55978a834c5",
|
|
244
|
+
"pptx/scripts/office/pack.py": "sha256:b1800987e568261a",
|
|
245
|
+
"pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd": "sha256:9e0b7209fc69ab11",
|
|
246
|
+
"pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd": "sha256:451958454e8588df",
|
|
247
|
+
"pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd": "sha256:6de111e11403f7cd",
|
|
248
|
+
"pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd": "sha256:f565adfef5a50204",
|
|
249
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd": "sha256:41b93bd8857cc68b",
|
|
250
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd": "sha256:3fd0586f2637b98b",
|
|
251
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd": "sha256:29b254ee0d10414a",
|
|
252
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd": "sha256:5cb76dabd8b97d1e",
|
|
253
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd": "sha256:5375417f0f5394b8",
|
|
254
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd": "sha256:5d389d42befbebd9",
|
|
255
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd": "sha256:b4532b6d25883295",
|
|
256
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd": "sha256:bdad416b096b61d3",
|
|
257
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd": "sha256:d173c3e5d61e42e2",
|
|
258
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd": "sha256:3c6709101c6aaa82",
|
|
259
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd": "sha256:0b364451dc36a48d",
|
|
260
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd": "sha256:e2abacbb9a55ce13",
|
|
261
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd": "sha256:0ef4bb354ff44b92",
|
|
262
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd": "sha256:0d103b99a4a8652f",
|
|
263
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd": "sha256:9c085407751b9061",
|
|
264
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd": "sha256:bc92e36ccd233722",
|
|
265
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd": "sha256:7b5b7413e2c895b1",
|
|
266
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd": "sha256:3213ef1631606250",
|
|
267
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd": "sha256:12264f3c03d73831",
|
|
268
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd": "sha256:beffeed56945c22a",
|
|
269
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd": "sha256:f5ee623b08b6a669",
|
|
270
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd": "sha256:585bedc1313b4088",
|
|
271
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd": "sha256:133c9f64a5c5d573",
|
|
272
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd": "sha256:6bdeb169c3717eb0",
|
|
273
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd": "sha256:475dcae1e7d1ea46",
|
|
274
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd": "sha256:c2dd9f61f892deae",
|
|
275
|
+
"pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd": "sha256:a539aa2fb154fa50",
|
|
276
|
+
"pptx/scripts/office/schemas/mce/mc.xsd": "sha256:3a37e461ecf5a867",
|
|
277
|
+
"pptx/scripts/office/schemas/microsoft/wml-2010.xsd": "sha256:568b26ee156cb954",
|
|
278
|
+
"pptx/scripts/office/schemas/microsoft/wml-2012.xsd": "sha256:0fa75578a000439a",
|
|
279
|
+
"pptx/scripts/office/schemas/microsoft/wml-2018.xsd": "sha256:be0ff793a22dd313",
|
|
280
|
+
"pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd": "sha256:fddc2b880cabb900",
|
|
281
|
+
"pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd": "sha256:127ca209fa73d7cb",
|
|
282
|
+
"pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd": "sha256:842e7163409c8d74",
|
|
283
|
+
"pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd": "sha256:16f6f8072249f431",
|
|
284
|
+
"pptx/scripts/office/soffice.py": "sha256:a3e21840e29e32f9",
|
|
285
|
+
"pptx/scripts/office/unpack.py": "sha256:83f69cecc8791018",
|
|
286
|
+
"pptx/scripts/office/validate.py": "sha256:1aef24f8e316965a",
|
|
287
|
+
"pptx/scripts/office/validators/__init__.py": "sha256:83e0f035c5abea23",
|
|
288
|
+
"pptx/scripts/office/validators/base.py": "sha256:d6358b67252df4db",
|
|
289
|
+
"pptx/scripts/office/validators/docx.py": "sha256:0ef04ce86b2e6b6a",
|
|
290
|
+
"pptx/scripts/office/validators/pptx.py": "sha256:f937961e62a5fa0d",
|
|
291
|
+
"pptx/scripts/office/validators/redlining.py": "sha256:f4c33fdb9da0651d",
|
|
292
|
+
"pptx/scripts/thumbnail.py": "sha256:e959ecd4f1973516",
|
|
293
|
+
"pptx/SKILL.md": "sha256:e5b0df918cbe9d62",
|
|
294
|
+
"skill-creator/agents/analyzer.md": "sha256:bf68f4cac5a56c67",
|
|
295
|
+
"skill-creator/agents/comparator.md": "sha256:fe1fc9787c495d86",
|
|
296
|
+
"skill-creator/agents/grader.md": "sha256:57134da0c1a4eea3",
|
|
297
|
+
"skill-creator/assets/eval_review.html": "sha256:ce477dcc74dc1c0d",
|
|
298
|
+
"skill-creator/eval-viewer/generate_review.py": "sha256:fc9d1b9243fe5ab6",
|
|
299
|
+
"skill-creator/eval-viewer/viewer.html": "sha256:a53213426ee11004",
|
|
300
|
+
"skill-creator/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
301
|
+
"skill-creator/references/schemas.md": "sha256:8e8876180a8989b4",
|
|
302
|
+
"skill-creator/scripts/__init__.py": "sha256:e3b0c44298fc1c14",
|
|
303
|
+
"skill-creator/scripts/aggregate_benchmark.py": "sha256:123ef128ea5ccc01",
|
|
304
|
+
"skill-creator/scripts/generate_report.py": "sha256:13df7118a3c50c83",
|
|
305
|
+
"skill-creator/scripts/improve_description.py": "sha256:87d864570220b699",
|
|
306
|
+
"skill-creator/scripts/package_skill.py": "sha256:1a33059b0db1ef73",
|
|
307
|
+
"skill-creator/scripts/quick_validate.py": "sha256:67cf570340201393",
|
|
308
|
+
"skill-creator/scripts/run_eval.py": "sha256:43e3b8f80dbf69c3",
|
|
309
|
+
"skill-creator/scripts/run_loop.py": "sha256:7bd6f67420316852",
|
|
310
|
+
"skill-creator/scripts/utils.py": "sha256:3af8ae62c40c73ab",
|
|
311
|
+
"skill-creator/SKILL.md": "sha256:dcd4803e61e913e6",
|
|
312
|
+
"slack-gif-creator/core/easing.py": "sha256:60bc943449802541",
|
|
313
|
+
"slack-gif-creator/core/frame_composer.py": "sha256:a127ea8f2a58893e",
|
|
314
|
+
"slack-gif-creator/core/gif_builder.py": "sha256:b6f50d738c491ee0",
|
|
315
|
+
"slack-gif-creator/core/validators.py": "sha256:56bd19e3aae05f83",
|
|
316
|
+
"slack-gif-creator/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
317
|
+
"slack-gif-creator/requirements.txt": "sha256:edc7108a0c6b5618",
|
|
318
|
+
"slack-gif-creator/SKILL.md": "sha256:2efca615ce55a3ed",
|
|
319
|
+
"theme-factory/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
320
|
+
"theme-factory/SKILL.md": "sha256:c35893e221e28895",
|
|
321
|
+
"theme-factory/theme-showcase.pdf": "sha256:3e126eca9fe99088",
|
|
322
|
+
"theme-factory/themes/arctic-frost.md": "sha256:868a75a8fb5b2a61",
|
|
323
|
+
"theme-factory/themes/botanical-garden.md": "sha256:222cb8e7496abc9b",
|
|
324
|
+
"theme-factory/themes/desert-rose.md": "sha256:bd065b8629be3b64",
|
|
325
|
+
"theme-factory/themes/forest-canopy.md": "sha256:ecb722efa24688e8",
|
|
326
|
+
"theme-factory/themes/golden-hour.md": "sha256:3444a00df971d3c2",
|
|
327
|
+
"theme-factory/themes/midnight-galaxy.md": "sha256:0e134c4c0324df41",
|
|
328
|
+
"theme-factory/themes/modern-minimalist.md": "sha256:b8bc572b75948d4d",
|
|
329
|
+
"theme-factory/themes/ocean-depths.md": "sha256:a7ad8eec85341dbf",
|
|
330
|
+
"theme-factory/themes/sunset-boulevard.md": "sha256:658af11ab04be492",
|
|
331
|
+
"theme-factory/themes/tech-innovation.md": "sha256:183648163026dd5e",
|
|
332
|
+
"web-artifacts-builder/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
333
|
+
"web-artifacts-builder/scripts/bundle-artifact.sh": "sha256:abf0e480bf6585b5",
|
|
334
|
+
"web-artifacts-builder/scripts/init-artifact.sh": "sha256:355e5dd4382aaaee",
|
|
335
|
+
"web-artifacts-builder/scripts/shadcn-components.tar.gz": "sha256:1296f069e825de79",
|
|
336
|
+
"web-artifacts-builder/SKILL.md": "sha256:81c5002c6643b0de",
|
|
337
|
+
"webapp-testing/examples/console_logging.py": "sha256:ea46877289acb82d",
|
|
338
|
+
"webapp-testing/examples/element_discovery.py": "sha256:d63c89604a22f884",
|
|
339
|
+
"webapp-testing/examples/static_html_automation.py": "sha256:9d533aafb875ee3a",
|
|
340
|
+
"webapp-testing/LICENSE.txt": "sha256:bc6b3af2f331cbc7",
|
|
341
|
+
"webapp-testing/scripts/with_server.py": "sha256:b0dcf4918935b795",
|
|
342
|
+
"webapp-testing/SKILL.md": "sha256:51b7349e77ec63b7",
|
|
343
|
+
"xlsx/LICENSE.txt": "sha256:79f6d8f5b427252f",
|
|
344
|
+
"xlsx/scripts/office/helpers/__init__.py": "sha256:e3b0c44298fc1c14",
|
|
345
|
+
"xlsx/scripts/office/helpers/merge_runs.py": "sha256:7c40ed838b88639c",
|
|
346
|
+
"xlsx/scripts/office/helpers/simplify_redlines.py": "sha256:560cb55978a834c5",
|
|
347
|
+
"xlsx/scripts/office/pack.py": "sha256:b1800987e568261a",
|
|
348
|
+
"xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd": "sha256:9e0b7209fc69ab11",
|
|
349
|
+
"xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd": "sha256:451958454e8588df",
|
|
350
|
+
"xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd": "sha256:6de111e11403f7cd",
|
|
351
|
+
"xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd": "sha256:f565adfef5a50204",
|
|
352
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd": "sha256:41b93bd8857cc68b",
|
|
353
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd": "sha256:3fd0586f2637b98b",
|
|
354
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd": "sha256:29b254ee0d10414a",
|
|
355
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd": "sha256:5cb76dabd8b97d1e",
|
|
356
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd": "sha256:5375417f0f5394b8",
|
|
357
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd": "sha256:5d389d42befbebd9",
|
|
358
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd": "sha256:b4532b6d25883295",
|
|
359
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd": "sha256:bdad416b096b61d3",
|
|
360
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd": "sha256:d173c3e5d61e42e2",
|
|
361
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd": "sha256:3c6709101c6aaa82",
|
|
362
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd": "sha256:0b364451dc36a48d",
|
|
363
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd": "sha256:e2abacbb9a55ce13",
|
|
364
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd": "sha256:0ef4bb354ff44b92",
|
|
365
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd": "sha256:0d103b99a4a8652f",
|
|
366
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd": "sha256:9c085407751b9061",
|
|
367
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd": "sha256:bc92e36ccd233722",
|
|
368
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd": "sha256:7b5b7413e2c895b1",
|
|
369
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd": "sha256:3213ef1631606250",
|
|
370
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd": "sha256:12264f3c03d73831",
|
|
371
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd": "sha256:beffeed56945c22a",
|
|
372
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd": "sha256:f5ee623b08b6a669",
|
|
373
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd": "sha256:585bedc1313b4088",
|
|
374
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd": "sha256:133c9f64a5c5d573",
|
|
375
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd": "sha256:6bdeb169c3717eb0",
|
|
376
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd": "sha256:475dcae1e7d1ea46",
|
|
377
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd": "sha256:c2dd9f61f892deae",
|
|
378
|
+
"xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd": "sha256:a539aa2fb154fa50",
|
|
379
|
+
"xlsx/scripts/office/schemas/mce/mc.xsd": "sha256:3a37e461ecf5a867",
|
|
380
|
+
"xlsx/scripts/office/schemas/microsoft/wml-2010.xsd": "sha256:568b26ee156cb954",
|
|
381
|
+
"xlsx/scripts/office/schemas/microsoft/wml-2012.xsd": "sha256:0fa75578a000439a",
|
|
382
|
+
"xlsx/scripts/office/schemas/microsoft/wml-2018.xsd": "sha256:be0ff793a22dd313",
|
|
383
|
+
"xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd": "sha256:fddc2b880cabb900",
|
|
384
|
+
"xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd": "sha256:127ca209fa73d7cb",
|
|
385
|
+
"xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd": "sha256:842e7163409c8d74",
|
|
386
|
+
"xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd": "sha256:16f6f8072249f431",
|
|
387
|
+
"xlsx/scripts/office/soffice.py": "sha256:a3e21840e29e32f9",
|
|
388
|
+
"xlsx/scripts/office/unpack.py": "sha256:83f69cecc8791018",
|
|
389
|
+
"xlsx/scripts/office/validate.py": "sha256:1aef24f8e316965a",
|
|
390
|
+
"xlsx/scripts/office/validators/__init__.py": "sha256:83e0f035c5abea23",
|
|
391
|
+
"xlsx/scripts/office/validators/base.py": "sha256:d6358b67252df4db",
|
|
392
|
+
"xlsx/scripts/office/validators/docx.py": "sha256:0ef04ce86b2e6b6a",
|
|
393
|
+
"xlsx/scripts/office/validators/pptx.py": "sha256:f937961e62a5fa0d",
|
|
394
|
+
"xlsx/scripts/office/validators/redlining.py": "sha256:f4c33fdb9da0651d",
|
|
395
|
+
"xlsx/scripts/recalc.py": "sha256:cf419d15e02965ae",
|
|
396
|
+
"xlsx/SKILL.md": "sha256:dd316db7785a6be1"
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
@@ -27,7 +27,7 @@ Never mix the two — don't reach for `requests`/`fetch` in a Python or TypeScri
|
|
|
27
27
|
|
|
28
28
|
Unless the user requests otherwise:
|
|
29
29
|
|
|
30
|
-
For the Claude model version, please use Claude Opus 4.
|
|
30
|
+
For the Claude model version, please use Claude Opus 4.8, which you can access via the exact model string `claude-opus-4-8`. Please default to using adaptive thinking (`thinking: {type: "adaptive"}`) for anything remotely complicated. And finally, please default to streaming for any request that may involve long input, long output, or high `max_tokens` — it prevents hitting request timeouts. Use the SDK's `.get_final_message()` / `.finalMessage()` helper to get the complete response if you don't need to handle individual stream events
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
@@ -161,16 +161,17 @@ Everything goes through `POST /v1/messages`. Tools and output constraints are fe
|
|
|
161
161
|
|
|
162
162
|
---
|
|
163
163
|
|
|
164
|
-
## Current Models (cached: 2026-
|
|
164
|
+
## Current Models (cached: 2026-05-26)
|
|
165
165
|
|
|
166
166
|
| Model | Model ID | Context | Input $/1M | Output $/1M |
|
|
167
167
|
| ----------------- | ------------------- | -------------- | ---------- | ----------- |
|
|
168
|
+
| Claude Opus 4.8 | `claude-opus-4-8` | 1M | $5.00 | $25.00 |
|
|
168
169
|
| Claude Opus 4.7 | `claude-opus-4-7` | 1M | $5.00 | $25.00 |
|
|
169
170
|
| Claude Opus 4.6 | `claude-opus-4-6` | 1M | $5.00 | $25.00 |
|
|
170
171
|
| Claude Sonnet 4.6 | `claude-sonnet-4-6` | 1M | $3.00 | $15.00 |
|
|
171
172
|
| Claude Haiku 4.5 | `claude-haiku-4-5` | 200K | $1.00 | $5.00 |
|
|
172
173
|
|
|
173
|
-
**ALWAYS use `claude-opus-4-
|
|
174
|
+
**ALWAYS use `claude-opus-4-8` unless the user explicitly names a different model.** This is non-negotiable. Do not use `claude-sonnet-4-6`, `claude-sonnet-4-5`, or any other model unless the user literally says "use sonnet" or "use haiku". Never downgrade for cost — that's the user's decision, not yours.
|
|
174
175
|
|
|
175
176
|
**CRITICAL: Use only the exact model ID strings from the table above — they are complete as-is. Do not append date suffixes.** For example, use `claude-sonnet-4-5`, never `claude-sonnet-4-5-20250514` or any other date-suffixed variant you might recall from training data. If the user requests an older model not in the table (e.g., "opus 4.5", "sonnet 3.7"), read `shared/models.md` for the exact ID — do not construct one yourself.
|
|
176
177
|
|
|
@@ -182,23 +183,23 @@ A note: if any of the model strings above look unfamiliar to you, that's to be e
|
|
|
182
183
|
|
|
183
184
|
## Thinking & Effort (Quick Reference)
|
|
184
185
|
|
|
185
|
-
**Opus 4.7 — Adaptive thinking only:** Use `thinking: {type: "adaptive"}`. `thinking: {type: "enabled", budget_tokens: N}` returns a 400
|
|
186
|
-
**Opus 4.6 — Adaptive thinking (recommended):** Use `thinking: {type: "adaptive"}`. Claude dynamically decides when and how much to think. No `budget_tokens` needed — `budget_tokens` is deprecated on Opus 4.6 and Sonnet 4.6 and should not be used for new code. Adaptive thinking also automatically enables interleaved thinking (no beta header needed). **When the user asks for "extended thinking", a "thinking budget", or `budget_tokens`: always use Opus 4.7 or 4.6 with `thinking: {type: "adaptive"}`. The concept of a fixed token budget for thinking is deprecated — adaptive thinking replaces it. Do NOT use `budget_tokens` for new 4.6/4.7 code and do NOT switch to an older model.** *Gradual-migration carve-out:* `budget_tokens` is still functional on Opus 4.6 and Sonnet 4.6 as a transitional escape hatch — if you're migrating existing code and need a hard token ceiling before you've tuned `effort`, see `shared/model-migration.md` → Transitional escape hatch. Note: this carve-out does **not** apply to Opus 4.7 — `budget_tokens` is fully removed there.
|
|
187
|
-
**Effort parameter (GA, no beta header):** Controls thinking depth and overall token spend via `output_config: {effort: "low"|"medium"|"high"|"max"}` (inside `output_config`, not top-level). Default is `high` (equivalent to omitting it). `max` is Opus-tier only (Opus 4.6 and later — not Sonnet or Haiku). Opus 4.7
|
|
186
|
+
**Opus 4.8 / 4.7 — Adaptive thinking only:** Use `thinking: {type: "adaptive"}`. `thinking: {type: "enabled", budget_tokens: N}` returns a 400 — adaptive is the only on-mode. `{type: "disabled"}` and omitting `thinking` both work. Sampling parameters (`temperature`, `top_p`, `top_k`) are also removed and will 400. Opus 4.8 keeps the same request surface as 4.7 (no new breaking changes) — see `shared/model-migration.md` → Migrating to Opus 4.8 for the behavioral re-tuning, and → Migrating to Opus 4.7 for the full breaking-change list when coming from 4.6 or earlier. Note: with `thinking` disabled, Opus 4.8 may write longer reasoning into the visible response — leave adaptive thinking on, or add a final-answer-only instruction (see the migration guide).
|
|
187
|
+
**Opus 4.6 — Adaptive thinking (recommended):** Use `thinking: {type: "adaptive"}`. Claude dynamically decides when and how much to think. No `budget_tokens` needed — `budget_tokens` is deprecated on Opus 4.6 and Sonnet 4.6 and should not be used for new code. Adaptive thinking also automatically enables interleaved thinking (no beta header needed). **When the user asks for "extended thinking", a "thinking budget", or `budget_tokens`: always use Opus 4.8, 4.7, or 4.6 with `thinking: {type: "adaptive"}`. The concept of a fixed token budget for thinking is deprecated — adaptive thinking replaces it. Do NOT use `budget_tokens` for new 4.6/4.7/4.8 code and do NOT switch to an older model.** *Gradual-migration carve-out:* `budget_tokens` is still functional on Opus 4.6 and Sonnet 4.6 as a transitional escape hatch — if you're migrating existing code and need a hard token ceiling before you've tuned `effort`, see `shared/model-migration.md` → Transitional escape hatch. Note: this carve-out does **not** apply to Opus 4.7 or 4.8 — `budget_tokens` is fully removed there.
|
|
188
|
+
**Effort parameter (GA, no beta header):** Controls thinking depth and overall token spend via `output_config: {effort: "low"|"medium"|"high"|"max"}` (inside `output_config`, not top-level). Default is `high` (equivalent to omitting it). `max` is Opus-tier only (Opus 4.6 and later — not Sonnet or Haiku). Opus 4.7 added `"xhigh"` (between `high` and `max`) — the best setting for most coding and agentic use cases on Opus 4.7/4.8, and the default in Claude Code; use a minimum of `high` for most intelligence-sensitive work. Works on Opus 4.5, Opus 4.6, Opus 4.7, Opus 4.8, and Sonnet 4.6. Will error on Sonnet 4.5 / Haiku 4.5. On Opus 4.7 and 4.8, effort matters more than on any prior Opus — re-tune it when migrating, and run long-horizon/agentic tasks at `high`/`xhigh` with the full task spec given up front. Combine with adaptive thinking for the best cost-quality tradeoffs. Lower effort means fewer and more-consolidated tool calls, less preamble, and terser confirmations — `high` is often the sweet spot balancing quality and token efficiency; use `max` when correctness matters more than cost; use `low` for subagents or simple tasks.
|
|
188
189
|
|
|
189
|
-
**Opus 4.7 — thinking content omitted by default:** `thinking` blocks still stream but their text is empty unless you opt in with `thinking: {type: "adaptive", display: "summarized"}` (default is `"omitted"`). Silent change — no error. If you stream reasoning to users, the default looks like a long pause before output; set `"summarized"` to restore visible progress.
|
|
190
|
+
**Opus 4.8 / 4.7 — thinking content omitted by default:** `thinking` blocks still stream but their text is empty unless you opt in with `thinking: {type: "adaptive", display: "summarized"}` (default is `"omitted"`). Silent change — no error. If you stream reasoning to users, the default looks like a long pause before output; set `"summarized"` to restore visible progress.
|
|
190
191
|
|
|
191
|
-
**Task Budgets (beta, Opus 4.7):** `output_config: {task_budget: {type: "tokens", total: N}}` tells the model how many tokens it has for a full agentic loop — it sees a running countdown and self-moderates (minimum 20,000; beta header `task-budgets-2026-03-13`). Distinct from `max_tokens`, which is an enforced per-response ceiling the model is not aware of. See `shared/model-migration.md` → Task Budgets.
|
|
192
|
+
**Task Budgets (beta, Opus 4.7 / 4.8):** `output_config: {task_budget: {type: "tokens", total: N}}` tells the model how many tokens it has for a full agentic loop — it sees a running countdown and self-moderates (minimum 20,000; beta header `task-budgets-2026-03-13`). Distinct from `max_tokens`, which is an enforced per-response ceiling the model is not aware of. See `shared/model-migration.md` → Task Budgets.
|
|
192
193
|
|
|
193
194
|
**Sonnet 4.6:** Supports adaptive thinking (`thinking: {type: "adaptive"}`). `budget_tokens` is deprecated on Sonnet 4.6 — use adaptive thinking instead.
|
|
194
195
|
|
|
195
|
-
**Older models (only if explicitly requested):** If the user specifically asks for Sonnet 4.5 or another older model, use `thinking: {type: "enabled", budget_tokens: N}`. `budget_tokens` must be less than `max_tokens` (minimum 1024). Never choose an older model just because the user mentions `budget_tokens` — use Opus 4.
|
|
196
|
+
**Older models (only if explicitly requested):** If the user specifically asks for Sonnet 4.5 or another older model, use `thinking: {type: "enabled", budget_tokens: N}`. `budget_tokens` must be less than `max_tokens` (minimum 1024). Never choose an older model just because the user mentions `budget_tokens` — use Opus 4.8 with adaptive thinking instead.
|
|
196
197
|
|
|
197
198
|
---
|
|
198
199
|
|
|
199
200
|
## Compaction (Quick Reference)
|
|
200
201
|
|
|
201
|
-
**Beta, Opus 4.7, Opus 4.6, and Sonnet 4.6.** For long-running conversations that may exceed the 1M context window, enable server-side compaction. The API automatically summarizes earlier context when it approaches the trigger threshold (default: 150K tokens). Requires beta header `compact-2026-01-12`.
|
|
202
|
+
**Beta, Opus 4.8, Opus 4.7, Opus 4.6, and Sonnet 4.6.** For long-running conversations that may exceed the 1M context window, enable server-side compaction. The API automatically summarizes earlier context when it approaches the trigger threshold (default: 150K tokens). Requires beta header `compact-2026-01-12`.
|
|
202
203
|
|
|
203
204
|
**Critical:** Append `response.content` (not just the text) back to your messages on every turn. Compaction blocks in the response must be preserved — the API uses them to replace the compacted history on the next request. Extracting only the text string and appending that will silently lose the compaction state.
|
|
204
205
|
|
|
@@ -256,7 +257,7 @@ After detecting the language, read the relevant files based on what the user nee
|
|
|
256
257
|
|
|
257
258
|
**Long-running conversations (may exceed context window):**
|
|
258
259
|
→ Read `{lang}/claude-api/README.md` — see Compaction section
|
|
259
|
-
**Migrating to a newer model (Opus 4.7 / Opus 4.6 / Sonnet 4.6) or replacing a retired model:**
|
|
260
|
+
**Migrating to a newer model (Opus 4.8 / Opus 4.7 / Opus 4.6 / Sonnet 4.6) or replacing a retired model:**
|
|
260
261
|
→ Read `shared/model-migration.md`
|
|
261
262
|
**Prompt caching / optimize caching / "why is my cache hit rate low":**
|
|
262
263
|
→ Read `shared/prompt-caching.md` + `{lang}/claude-api/README.md` (Prompt Caching section)
|
|
@@ -311,13 +312,13 @@ Live documentation URLs are in `shared/live-sources.md`.
|
|
|
311
312
|
## Common Pitfalls
|
|
312
313
|
|
|
313
314
|
- Don't truncate inputs when passing files or content to the API. If the content is too long to fit in the context window, notify the user and discuss options (chunking, summarization, etc.) rather than silently truncating.
|
|
314
|
-
- **Opus 4.7 thinking:** Adaptive only. `thinking: {type: "enabled", budget_tokens: N}` returns 400
|
|
315
|
-
- **Opus 4.6 / Sonnet 4.6 thinking:** Use `thinking: {type: "adaptive"}` — do NOT use `budget_tokens` for new 4.6 code (deprecated on both Opus 4.6 and Sonnet 4.6; for gradual migration of existing code, see the transitional escape hatch in `shared/model-migration.md` — note this carve-out does not apply to Opus 4.7). For older models, `budget_tokens` must be less than `max_tokens` (minimum 1024). This will throw an error if you get it wrong.
|
|
316
|
-
- **4.6/4.7 family prefill removed:** Assistant message prefills (last-assistant-turn prefills) return a 400 error on Opus 4.6, Opus 4.7, and Sonnet 4.6. Use structured outputs (`output_config.format`) or system prompt instructions to control response format instead.
|
|
317
|
-
- **Confirm migration scope before editing:** When a user asks to migrate code to a newer Claude model without naming a specific file, directory, or file list, **ask which scope to apply first** — the entire working directory, a specific subdirectory, or a specific set of files. Do not start editing until the user confirms. Imperative phrasings like "migrate my codebase", "move my project to X", "upgrade to Sonnet 4.6", or bare "migrate to Opus 4.
|
|
315
|
+
- **Opus 4.8 / 4.7 thinking:** Adaptive only. `thinking: {type: "enabled", budget_tokens: N}` returns 400 — `budget_tokens` is fully removed (along with `temperature`, `top_p`, `top_k`). Use `thinking: {type: "adaptive"}`. Opus 4.8 inherits this surface from 4.7 with no new breaking changes.
|
|
316
|
+
- **Opus 4.6 / Sonnet 4.6 thinking:** Use `thinking: {type: "adaptive"}` — do NOT use `budget_tokens` for new 4.6 code (deprecated on both Opus 4.6 and Sonnet 4.6; for gradual migration of existing code, see the transitional escape hatch in `shared/model-migration.md` — note this carve-out does not apply to Opus 4.7 or 4.8). For older models, `budget_tokens` must be less than `max_tokens` (minimum 1024). This will throw an error if you get it wrong.
|
|
317
|
+
- **4.6/4.7/4.8 family prefill removed:** Assistant message prefills (last-assistant-turn prefills) return a 400 error on Opus 4.6, Opus 4.7, Opus 4.8, and Sonnet 4.6. Use structured outputs (`output_config.format`) or system prompt instructions to control response format instead.
|
|
318
|
+
- **Confirm migration scope before editing:** When a user asks to migrate code to a newer Claude model without naming a specific file, directory, or file list, **ask which scope to apply first** — the entire working directory, a specific subdirectory, or a specific set of files. Do not start editing until the user confirms. Imperative phrasings like "migrate my codebase", "move my project to X", "upgrade to Sonnet 4.6", or bare "migrate to Opus 4.8" are **still ambiguous** — they tell you what to do but not where, so ask. Proceed without asking only when the prompt names an exact file, a specific directory, or an explicit file list ("migrate `app.py`", "migrate everything under `services/`", "update `a.py` and `b.py`"). See `shared/model-migration.md` Step 0.
|
|
318
319
|
- **`max_tokens` defaults:** Don't lowball `max_tokens` — hitting the cap truncates output mid-thought and requires a retry. For non-streaming requests, default to `~16000` (keeps responses under SDK HTTP timeouts). For streaming requests, default to `~64000` (timeouts aren't a concern, so give the model room). Only go lower when you have a hard reason: classification (`~256`), cost caps, or deliberately short outputs.
|
|
319
|
-
- **128K output tokens:** Opus 4.6 and Opus 4.
|
|
320
|
-
- **Tool call JSON parsing (4.6/4.7 family):** Opus 4.6, Opus 4.7, and Sonnet 4.6 may produce different JSON string escaping in tool call `input` fields (e.g., Unicode or forward-slash escaping). Always parse tool inputs with `json.loads()` / `JSON.parse()` — never do raw string matching on the serialized input.
|
|
320
|
+
- **128K output tokens:** Opus 4.6, Opus 4.7, and Opus 4.8 support up to 128K `max_tokens`, but the SDKs require streaming for values that large to avoid HTTP timeouts. Use `.stream()` with `.get_final_message()` / `.finalMessage()`.
|
|
321
|
+
- **Tool call JSON parsing (4.6/4.7/4.8 family):** Opus 4.6, Opus 4.7, Opus 4.8, and Sonnet 4.6 may produce different JSON string escaping in tool call `input` fields (e.g., Unicode or forward-slash escaping). Always parse tool inputs with `json.loads()` / `JSON.parse()` — never do raw string matching on the serialized input.
|
|
321
322
|
- **Structured outputs (all models):** Use `output_config: {format: {...}}` instead of the deprecated `output_format` parameter on `messages.create()`. This is a general API change, not 4.6-specific.
|
|
322
323
|
- **Don't reimplement SDK functionality:** The SDK provides high-level helpers — use them instead of building from scratch. Specifically: use `stream.finalMessage()` instead of wrapping `.on()` events in `new Promise()`; use typed exception classes (`Anthropic.RateLimitError`, etc.) instead of string-matching error messages; use SDK types (`Anthropic.MessageParam`, `Anthropic.Tool`, `Anthropic.Message`, etc.) instead of redefining equivalent interfaces.
|
|
323
324
|
- **Don't define custom types for SDK data structures:** The SDK exports types for all API objects. Use `Anthropic.MessageParam` for messages, `Anthropic.Tool` for tool definitions, `Anthropic.ToolUseBlock` / `Anthropic.ToolResultBlockParam` for tool results, `Anthropic.Message` for responses. Defining your own `interface ChatMessage { role: string; content: unknown }` duplicates what the SDK already provides and loses type safety.
|
|
@@ -18,7 +18,7 @@ curl https://api.anthropic.com/v1/messages \
|
|
|
18
18
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
19
19
|
-H "anthropic-version: 2023-06-01" \
|
|
20
20
|
-d '{
|
|
21
|
-
"model": "claude-opus-4-
|
|
21
|
+
"model": "claude-opus-4-8",
|
|
22
22
|
"max_tokens": 16000,
|
|
23
23
|
"messages": [
|
|
24
24
|
{"role": "user", "content": "What is the capital of France?"}
|
|
@@ -38,7 +38,7 @@ response=$(curl -s https://api.anthropic.com/v1/messages \
|
|
|
38
38
|
-H "Content-Type: application/json" \
|
|
39
39
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
40
40
|
-H "anthropic-version: 2023-06-01" \
|
|
41
|
-
-d '{"model":"claude-opus-4-
|
|
41
|
+
-d '{"model":"claude-opus-4-8","max_tokens":16000,"messages":[{"role":"user","content":"Hello"}]}')
|
|
42
42
|
|
|
43
43
|
# Print the first text block (-r strips the JSON quotes)
|
|
44
44
|
echo "$response" | jq -r '.content[0].text'
|
|
@@ -65,7 +65,7 @@ curl https://api.anthropic.com/v1/messages \
|
|
|
65
65
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
66
66
|
-H "anthropic-version: 2023-06-01" \
|
|
67
67
|
-d '{
|
|
68
|
-
"model": "claude-opus-4-
|
|
68
|
+
"model": "claude-opus-4-8",
|
|
69
69
|
"max_tokens": 64000,
|
|
70
70
|
"stream": true,
|
|
71
71
|
"messages": [{"role": "user", "content": "Write a haiku"}]
|
|
@@ -104,7 +104,7 @@ curl https://api.anthropic.com/v1/messages \
|
|
|
104
104
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
105
105
|
-H "anthropic-version: 2023-06-01" \
|
|
106
106
|
-d '{
|
|
107
|
-
"model": "claude-opus-4-
|
|
107
|
+
"model": "claude-opus-4-8",
|
|
108
108
|
"max_tokens": 16000,
|
|
109
109
|
"tools": [{
|
|
110
110
|
"name": "get_weather",
|
|
@@ -129,7 +129,7 @@ curl https://api.anthropic.com/v1/messages \
|
|
|
129
129
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
130
130
|
-H "anthropic-version: 2023-06-01" \
|
|
131
131
|
-d '{
|
|
132
|
-
"model": "claude-opus-4-
|
|
132
|
+
"model": "claude-opus-4-8",
|
|
133
133
|
"max_tokens": 16000,
|
|
134
134
|
"tools": [{
|
|
135
135
|
"name": "get_weather",
|
|
@@ -167,7 +167,7 @@ curl https://api.anthropic.com/v1/messages \
|
|
|
167
167
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
168
168
|
-H "anthropic-version: 2023-06-01" \
|
|
169
169
|
-d '{
|
|
170
|
-
"model": "claude-opus-4-
|
|
170
|
+
"model": "claude-opus-4-8",
|
|
171
171
|
"max_tokens": 16000,
|
|
172
172
|
"system": [
|
|
173
173
|
{"type": "text", "text": "<large shared prompt...>", "cache_control": {"type": "ephemeral"}}
|
|
@@ -182,17 +182,17 @@ For 1-hour TTL: `"cache_control": {"type": "ephemeral", "ttl": "1h"}`. Top-level
|
|
|
182
182
|
|
|
183
183
|
## Extended Thinking
|
|
184
184
|
|
|
185
|
-
> **Opus 4.7, Opus 4.6, and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is removed on Opus 4.7 (400 if sent); deprecated on Opus 4.6 and Sonnet 4.6.
|
|
185
|
+
> **Opus 4.8, Opus 4.7, Opus 4.6, and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is removed on Opus 4.8 and 4.7 (400 if sent); deprecated on Opus 4.6 and Sonnet 4.6.
|
|
186
186
|
> **Older models:** Use `"type": "enabled"` with `"budget_tokens": N` (must be < `max_tokens`, min 1024).
|
|
187
187
|
|
|
188
188
|
```bash
|
|
189
|
-
# Opus 4.7 / 4.6: adaptive thinking (recommended)
|
|
189
|
+
# Opus 4.8 / 4.7 / 4.6: adaptive thinking (recommended)
|
|
190
190
|
curl https://api.anthropic.com/v1/messages \
|
|
191
191
|
-H "Content-Type: application/json" \
|
|
192
192
|
-H "x-api-key: $ANTHROPIC_API_KEY" \
|
|
193
193
|
-H "anthropic-version: 2023-06-01" \
|
|
194
194
|
-d '{
|
|
195
|
-
"model": "claude-opus-4-
|
|
195
|
+
"model": "claude-opus-4-8",
|
|
196
196
|
"max_tokens": 16000,
|
|
197
197
|
"thinking": {
|
|
198
198
|
"type": "adaptive"
|