@caoscompanybr/merlin 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/CLAUDE.md +216 -0
- package/.claude/hooks/README-license-gate.md +45 -0
- package/.claude/hooks/auto-summarize.js +47 -0
- package/.claude/hooks/context-monitor.js +60 -0
- package/.claude/hooks/doc-sync.js +111 -0
- package/.claude/hooks/license-gate.cjs +59 -0
- package/.claude/hooks/session-reset.js +27 -0
- package/.claude/hooks/thoughts-indexer.js +80 -0
- package/.claude/rules/merlin-constitution.md +27 -0
- package/.merlin-core/commands/README.md +19 -0
- package/.merlin-core/commands/founder-mode.md +51 -0
- package/.merlin-core/commands/git/commit.md +35 -0
- package/.merlin-core/commands/git/describe-pr.md +43 -0
- package/.merlin-core/commands/git/safe-commit.md +182 -0
- package/.merlin-core/commands/implementation/implement-plan.md +129 -0
- package/.merlin-core/commands/implementation/oneshot.md +63 -0
- package/.merlin-core/commands/implementation/tdd.md +152 -0
- package/.merlin-core/commands/planning/create-plan.md +184 -0
- package/.merlin-core/commands/planning/iterate-plan.md +45 -0
- package/.merlin-core/commands/planning/validate-plan.md +48 -0
- package/.merlin-core/commands/research/analyze-issue.md +155 -0
- package/.merlin-core/commands/research/research-codebase.md +157 -0
- package/.merlin-core/commands/review/adversarial-review.md +112 -0
- package/.merlin-core/commands/review/check.md +91 -0
- package/.merlin-core/commands/review/debug.md +135 -0
- package/.merlin-core/commands/review/doubts.md +178 -0
- package/.merlin-core/commands/review/engineering-audit.md +87 -0
- package/.merlin-core/commands/review/local-review.md +48 -0
- package/.merlin-core/commands/review/verify-goals.md +83 -0
- package/.merlin-core/commands/session/capture-feedback.md +74 -0
- package/.merlin-core/commands/session/capture-learning.md +155 -0
- package/.merlin-core/commands/session/check-objectives.md +85 -0
- package/.merlin-core/commands/session/conclude.md +125 -0
- package/.merlin-core/commands/session/create-handoff.md +88 -0
- package/.merlin-core/commands/session/create-objective.md +111 -0
- package/.merlin-core/commands/session/create-process.md +105 -0
- package/.merlin-core/commands/session/create-reminder.md +86 -0
- package/.merlin-core/commands/session/fast-start.md +261 -0
- package/.merlin-core/commands/session/recall-learnings.md +79 -0
- package/.merlin-core/commands/session/recall-processes.md +74 -0
- package/.merlin-core/commands/session/resume-handoff.md +51 -0
- package/.merlin-core/commands/session/run-process.md +53 -0
- package/.merlin-core/commands/special/beauty.md +89 -0
- package/.merlin-core/commands/special/common-ground.md +114 -0
- package/.merlin-core/commands/special/elicit.md +98 -0
- package/.merlin-core/commands/special/party.md +66 -0
- package/.merlin-core/commands/special/scrape.md +78 -0
- package/.merlin-core/commands/special/skill-audit.md +128 -0
- package/.merlin-core/commands/special/start-here.md +132 -0
- package/.merlin-core/constitution.md +442 -0
- package/.merlin-core/core/README.md +19 -0
- package/.merlin-core/core/alkimia/README.md +20 -0
- package/.merlin-core/core/alkimia/context/context-tracker.js +209 -0
- package/.merlin-core/core/alkimia/domain/domain-loader.js +215 -0
- package/.merlin-core/core/alkimia/engine.js +284 -0
- package/.merlin-core/core/alkimia/layers/l0-constitution.js +47 -0
- package/.merlin-core/core/alkimia/layers/l1-global.js +58 -0
- package/.merlin-core/core/alkimia/layers/l2-agent.js +58 -0
- package/.merlin-core/core/alkimia/layers/l3-workflow.js +54 -0
- package/.merlin-core/core/alkimia/layers/l4-task.js +45 -0
- package/.merlin-core/core/alkimia/layers/l5-squad.js +161 -0
- package/.merlin-core/core/alkimia/layers/l6-skill.js +520 -0
- package/.merlin-core/core/alkimia/layers/l7-star-command.js +87 -0
- package/.merlin-core/core/alkimia/layers/layer-processor.js +78 -0
- package/.merlin-core/core/alkimia/mandate.js +46 -0
- package/.merlin-core/core/alkimia/memory/doc-sync.js +201 -0
- package/.merlin-core/core/alkimia/memory/document-sharder.js +272 -0
- package/.merlin-core/core/alkimia/memory/git-history-retriever.js +225 -0
- package/.merlin-core/core/alkimia/memory/memory-bridge.js +97 -0
- package/.merlin-core/core/alkimia/memory/session-analyzer.js +400 -0
- package/.merlin-core/core/alkimia/memory/thoughts-indexer.js +477 -0
- package/.merlin-core/core/alkimia/memory/thoughts-provider.js +603 -0
- package/.merlin-core/core/alkimia/output/formatter.js +464 -0
- package/.merlin-core/core/alkimia/security/content-sanitizer.js +140 -0
- package/.merlin-core/core/alkimia/skill-importer.js +440 -0
- package/.merlin-core/core/alkimia/squads/default/.synapse/manifest +17 -0
- package/.merlin-core/core/alkimia/utils/frontmatter.js +321 -0
- package/.merlin-core/core/alkimia/utils/tokens.js +24 -0
- package/.merlin-core/core/approval/README.md +16 -0
- package/.merlin-core/core/approval/approval-engine.js +380 -0
- package/.merlin-core/core/approval/channels/cli-channel.js +50 -0
- package/.merlin-core/core/config/README.md +17 -0
- package/.merlin-core/core/config/config-cache.js +182 -0
- package/.merlin-core/core/config/config-loader.js +279 -0
- package/.merlin-core/core/config/config-resolver.js +411 -0
- package/.merlin-core/core/config/env-interpolator.js +123 -0
- package/.merlin-core/core/config/merge-utils.js +102 -0
- package/.merlin-core/core/config/schemas/core-config.schema.json +41 -0
- package/.merlin-core/core/config/schemas/framework-config.schema.json +24 -0
- package/.merlin-core/core/config/schemas/local-config.schema.json +23 -0
- package/.merlin-core/core/config/schemas/project-config.schema.json +189 -0
- package/.merlin-core/core/docs-consistency.js +140 -0
- package/.merlin-core/core/events/event-bus.js +344 -0
- package/.merlin-core/core/events/hook-handler.js +419 -0
- package/.merlin-core/core/execution/README.md +17 -0
- package/.merlin-core/core/execution/attempt-journal.js +380 -0
- package/.merlin-core/core/execution/autonomous-build-loop.js +637 -0
- package/.merlin-core/core/execution/build-orchestrator.js +296 -0
- package/.merlin-core/core/execution/build-state-manager.js +196 -0
- package/.merlin-core/core/execution/context-injector.js +204 -0
- package/.merlin-core/core/execution/cron-engine.js +247 -0
- package/.merlin-core/core/execution/cron-expression.js +148 -0
- package/.merlin-core/core/execution/env-preflight.js +423 -0
- package/.merlin-core/core/execution/guardrail-engine.js +745 -0
- package/.merlin-core/core/execution/heartbeat-engine.js +198 -0
- package/.merlin-core/core/execution/model-router.js +282 -0
- package/.merlin-core/core/execution/parallel-executor.js +378 -0
- package/.merlin-core/core/execution/parallel-monitor.js +201 -0
- package/.merlin-core/core/execution/party-session.js +311 -0
- package/.merlin-core/core/execution/rate-limit-manager.js +152 -0
- package/.merlin-core/core/execution/result-aggregator.js +215 -0
- package/.merlin-core/core/execution/semantic-merge-engine.js +320 -0
- package/.merlin-core/core/execution/subagent-dispatcher.js +721 -0
- package/.merlin-core/core/execution/success-verifier.js +227 -0
- package/.merlin-core/core/execution/task-metadata.js +105 -0
- package/.merlin-core/core/execution/team-executor.js +195 -0
- package/.merlin-core/core/execution/two-tier-editor.js +290 -0
- package/.merlin-core/core/execution/version-snapshot.js +294 -0
- package/.merlin-core/core/execution/wave-executor.js +224 -0
- package/.merlin-core/core/health-check/health-engine.js +415 -0
- package/.merlin-core/core/licensing/activation.js +281 -0
- package/.merlin-core/core/licensing/crc.js +103 -0
- package/.merlin-core/core/licensing/entitlement.js +99 -0
- package/.merlin-core/core/licensing/fingerprint.js +104 -0
- package/.merlin-core/core/licensing/gate.js +133 -0
- package/.merlin-core/core/licensing/hmac.js +42 -0
- package/.merlin-core/core/licensing/key.js +144 -0
- package/.merlin-core/core/licensing/license.js +212 -0
- package/.merlin-core/core/mcp/README.md +16 -0
- package/.merlin-core/core/mcp/browser-capability.js +191 -0
- package/.merlin-core/core/mcp/capability-mapper.js +92 -0
- package/.merlin-core/core/mcp/mcp-connector.js +278 -0
- package/.merlin-core/core/mcp/mcp-registry.js +101 -0
- package/.merlin-core/core/orchestration/README.md +17 -0
- package/.merlin-core/core/orchestration/agent-invoker.js +456 -0
- package/.merlin-core/core/orchestration/condition-evaluator.js +250 -0
- package/.merlin-core/core/orchestration/decision-tree.js +192 -0
- package/.merlin-core/core/orchestration/executor-assignment.js +372 -0
- package/.merlin-core/core/orchestration/gate-evaluator.js +653 -0
- package/.merlin-core/core/orchestration/intent-classifier.js +579 -0
- package/.merlin-core/core/orchestration/lock-manager.js +308 -0
- package/.merlin-core/core/orchestration/master-orchestrator.js +363 -0
- package/.merlin-core/core/orchestration/phase-tool-masks.js +194 -0
- package/.merlin-core/core/orchestration/recovery-handler.js +402 -0
- package/.merlin-core/core/orchestration/reflect-checkpoint.js +431 -0
- package/.merlin-core/core/orchestration/session-state.js +430 -0
- package/.merlin-core/core/orchestration/skill-dispatcher.js +255 -0
- package/.merlin-core/core/orchestration/step-loader.js +226 -0
- package/.merlin-core/core/orchestration/workflow-executor.js +864 -0
- package/.merlin-core/core/process/executor.js +231 -0
- package/.merlin-core/core/process/process-file.js +50 -0
- package/.merlin-core/core/process/secret-scan.js +86 -0
- package/.merlin-core/core/process/signature.js +77 -0
- package/.merlin-core/core/quality-gates/README.md +17 -0
- package/.merlin-core/core/quality-gates/layer1-precommit.js +110 -0
- package/.merlin-core/core/quality-gates/layer2-pr-automation.js +116 -0
- package/.merlin-core/core/quality-gates/layer3-human-review.js +133 -0
- package/.merlin-core/core/registry/service-registry.js +140 -0
- package/.merlin-core/core-config.yaml +159 -0
- package/.merlin-core/development/README.md +17 -0
- package/.merlin-core/development/agents/README.md +16 -0
- package/.merlin-core/development/agents/analyst.md +214 -0
- package/.merlin-core/development/agents/architect.md +166 -0
- package/.merlin-core/development/agents/data-engineer.md +154 -0
- package/.merlin-core/development/agents/dev.md +203 -0
- package/.merlin-core/development/agents/devops.md +236 -0
- package/.merlin-core/development/agents/grimorio.md +125 -0
- package/.merlin-core/development/agents/merlin-master.md +173 -0
- package/.merlin-core/development/agents/meta.md +190 -0
- package/.merlin-core/development/agents/pm.md +145 -0
- package/.merlin-core/development/agents/po.md +172 -0
- package/.merlin-core/development/agents/qa.md +275 -0
- package/.merlin-core/development/agents/researcher.md +218 -0
- package/.merlin-core/development/agents/scout.md +179 -0
- package/.merlin-core/development/agents/sm.md +148 -0
- package/.merlin-core/development/agents/ux.md +169 -0
- package/.merlin-core/development/agents/web-researcher.md +203 -0
- package/.merlin-core/development/checklists/adversarial-review-checklist.md +70 -0
- package/.merlin-core/development/checklists/operations-ci-checklist.md +40 -0
- package/.merlin-core/development/checklists/operations-deploy-checklist.md +54 -0
- package/.merlin-core/development/checklists/operations-publish-checklist.md +47 -0
- package/.merlin-core/development/checklists/source-verification-checklist.md +38 -0
- package/.merlin-core/development/templates/HEARTBEAT-template.md +46 -0
- package/.merlin-core/development/templates/ears-requirements-template.md +93 -0
- package/.merlin-core/development/templates/handoff-template.md +50 -0
- package/.merlin-core/development/templates/prd-template.md +62 -0
- package/.merlin-core/development/templates/research-template.md +53 -0
- package/.merlin-core/development/templates/spec-template.md +84 -0
- package/.merlin-core/development/workflows/brownfield-discovery.yaml +166 -0
- package/.merlin-core/development/workflows/brownfield-service.yaml +52 -0
- package/.merlin-core/development/workflows/development-cycle.yaml +57 -0
- package/.merlin-core/development/workflows/epic-orchestration.yaml +47 -0
- package/.merlin-core/development/workflows/folloni-funnel.yaml +177 -0
- package/.merlin-core/development/workflows/greenfield-fullstack.yaml +167 -0
- package/.merlin-core/development/workflows/greenfield-service.yaml +56 -0
- package/.merlin-core/development/workflows/qa-loop.yaml +115 -0
- package/.merlin-core/development/workflows/spec-pipeline.yaml +185 -0
- package/.merlin-core/development/workflows/steps/folloni-01-research.yaml +35 -0
- package/.merlin-core/development/workflows/steps/folloni-02-architecture.yaml +41 -0
- package/.merlin-core/development/workflows/steps/folloni-03-implementation.yaml +52 -0
- package/.merlin-core/development/workflows/story-development-cycle.yaml +67 -0
- package/.merlin-core/docs/GUIDE.md +413 -0
- package/.merlin-core/docs/merlin-commands-guide-pt.md +183 -0
- package/.merlin-core/framework-config.yaml +148 -0
- package/.merlin-core/hooks/README.md +16 -0
- package/.merlin-core/hooks/precompact-memory-flush.js +69 -0
- package/.merlin-core/hooks/pretooluse-remote-approve.js +113 -0
- package/.merlin-core/hooks/spikes/spike-b-hook.js +70 -0
- package/.merlin-core/hooks/spikes/spike-b-stub.js +70 -0
- package/.merlin-core/index.js +91 -0
- package/.merlin-core/local-config.yaml.template +31 -0
- package/.merlin-core/mcp-servers/lsp-bridge/index.js +397 -0
- package/.merlin-core/modules/scraping/module.json +23 -0
- package/.merlin-core/project-config.yaml +89 -0
- package/.merlin-core/schemas/README.md +18 -0
- package/.merlin-core/schemas/agent-hook-schema.json +152 -0
- package/.merlin-core/schemas/agent-schema.json +31 -0
- package/.merlin-core/schemas/command-schema.json +18 -0
- package/.merlin-core/schemas/feedback-schema.json +36 -0
- package/.merlin-core/schemas/handoff-schema.json +19 -0
- package/.merlin-core/schemas/learning-schema.json +51 -0
- package/.merlin-core/schemas/module.schema.json +124 -0
- package/.merlin-core/schemas/must-haves-schema.json +95 -0
- package/.merlin-core/schemas/objective-schema.json +23 -0
- package/.merlin-core/schemas/plan-schema.json +20 -0
- package/.merlin-core/schemas/process-schema.json +82 -0
- package/.merlin-core/schemas/reminder-schema.json +20 -0
- package/.merlin-core/schemas/skill-eval-schema.json +92 -0
- package/.merlin-core/schemas/skill-schema.json +77 -0
- package/.merlin-core/schemas/workflow-schema.json +38 -0
- package/.merlin-core/skills/README.md +16 -0
- package/.merlin-core/skills/domain/azure-cloud/SKILL.md +211 -0
- package/.merlin-core/skills/domain/azure-cloud/references/appinsights-instrumentation.md +63 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-compliance.md +99 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-cost-optimization.md +419 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-deploy.md +82 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-diagnostics.md +130 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-prepare.md +134 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-quotas.md +290 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-rbac.md +11 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-resource-lookup.md +97 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-resource-visualizer.md +178 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-storage.md +91 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-validate.md +58 -0
- package/.merlin-core/skills/domain/azure-cloud/references/entra-app-registration.md +192 -0
- package/.merlin-core/skills/domain/browser-automation/SKILL.md +311 -0
- package/.merlin-core/skills/domain/browser-automation/references/agent-browser-skill.md +632 -0
- package/.merlin-core/skills/domain/browser-automation/references/authentication.md +308 -0
- package/.merlin-core/skills/domain/browser-automation/references/commands.md +266 -0
- package/.merlin-core/skills/domain/browser-automation/references/profiling.md +120 -0
- package/.merlin-core/skills/domain/browser-automation/references/proxy-support.md +194 -0
- package/.merlin-core/skills/domain/browser-automation/references/session-management.md +194 -0
- package/.merlin-core/skills/domain/browser-automation/references/snapshot-refs.md +196 -0
- package/.merlin-core/skills/domain/browser-automation/references/video-recording.md +173 -0
- package/.merlin-core/skills/domain/browser-automation/templates/authenticated-session.sh +105 -0
- package/.merlin-core/skills/domain/browser-automation/templates/capture-workflow.sh +69 -0
- package/.merlin-core/skills/domain/browser-automation/templates/form-automation.sh +62 -0
- package/.merlin-core/skills/domain/digital-marketing/SKILL.md +292 -0
- package/.merlin-core/skills/domain/digital-marketing/references/content-strategy.md +320 -0
- package/.merlin-core/skills/domain/digital-marketing/references/copy-formats.md +298 -0
- package/.merlin-core/skills/domain/digital-marketing/references/copy-methodology.md +180 -0
- package/.merlin-core/skills/domain/digital-marketing/references/email-sequences.md +135 -0
- package/.merlin-core/skills/domain/digital-marketing/references/launch-strategy.md +213 -0
- package/.merlin-core/skills/domain/digital-marketing/references/pricing-strategy.md +160 -0
- package/.merlin-core/skills/domain/digital-marketing/references/programmatic-seo.md +237 -0
- package/.merlin-core/skills/domain/digital-marketing/references/revops-lifecycle.md +170 -0
- package/.merlin-core/skills/domain/digital-marketing/references/revops-operations.md +167 -0
- package/.merlin-core/skills/domain/digital-marketing/references/schema-markup.md +190 -0
- package/.merlin-core/skills/domain/digital-marketing/references/strategy-frameworks.md +324 -0
- package/.merlin-core/skills/domain/digital-marketing/references/traffic-management.md +350 -0
- package/.merlin-core/skills/domain/expo-native-ui/SKILL.md +348 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/animations.md +220 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/api-routes.md +361 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/cicd-workflows.md +84 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/controls.md +266 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/data-fetching.md +553 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/deployment-stores.md +1353 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/deployment.md +183 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/dev-client.md +166 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/dom-components.md +410 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/form-sheet.md +253 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/gradients.md +117 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/icons.md +218 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/media.md +245 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/platform-native.md +75 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/route-structure.md +229 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/search.md +249 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/storage.md +121 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/tabs.md +433 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/tailwind-native.md +473 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/toolbar-and-headers.md +284 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/upgrading-guides.md +674 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/upgrading.md +127 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/visual-effects.md +199 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/webgpu-three.md +605 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/zoom-transitions.md +161 -0
- package/.merlin-core/skills/domain/marketing-ops/SKILL.md +117 -0
- package/.merlin-core/skills/domain/marketing-ops/references/_index.md +78 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative/references/generative-tools.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative/references/platform-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative.md +251 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/ad-copy-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/audience-targeting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/conversion-tracking.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/platform-setup-checklists.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads.md +322 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/content-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/content-types.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/platform-ranking-factors.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo.md +388 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/apple-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/benchmarks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/google-play-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/report-template.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/scoring-criteria.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso.md +316 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/co-marketing.md +305 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/community-marketing.md +169 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling/references/templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling/references/tool-reference.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling.md +442 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors/references/content-architecture.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors/references/templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors.md +281 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/content-strategy.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/directory-list.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/positioning-variations.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/submission-tracker-template.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions.md +396 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/free-tools/references/tool-types.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/free-tools.md +196 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/image/references/ai-image-prompting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/image.md +352 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/launch.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets/references/benchmarks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets/references/format-guide.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets.md +333 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/programmatic-seo.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/schema.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit/references/ai-writing-detection.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit/references/international-seo.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit.md +546 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/mermaid-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/navigation-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/site-type-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture.md +371 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/platform-limits.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/platforms.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/post-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/reverse-engineering.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/short-form-video.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social.md +431 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/video/references/ai-video-prompting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/video.md +353 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing/references/sample-size-guide.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing/references/test-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing.md +379 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/event-library.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/ga4-implementation.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/gtm-implementation.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics.md +323 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/copy-editing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/copywriting.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro/references/form.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro.md +211 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/emails.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/paywalls/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/paywalls.md +255 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/popups.md +518 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/pricing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/deck-frameworks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/demo-scripts.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/objection-library.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/one-pager-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement.md +371 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/signup.md +406 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/co-marketing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/community-marketing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals/references/affiliate-programs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals/references/program-examples.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals.md +278 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/customer-research/references/source-guides.md +425 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/customer-research.md +284 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-ideas/references/ideas-by-category.md +216 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-ideas.md +188 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-psychology.md +532 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/product-marketing.md +276 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention/references/cancel-flow-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention/references/dunning-playbook.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention.md +442 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/onboarding/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/onboarding.md +243 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/revops-lifecycle.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/revops-operations.md +18 -0
- package/.merlin-core/skills/domain/n8n-automation/SKILL.md +149 -0
- package/.merlin-core/skills/domain/n8n-automation/references/code-javascript.md +3744 -0
- package/.merlin-core/skills/domain/n8n-automation/references/code-python.md +3293 -0
- package/.merlin-core/skills/domain/n8n-automation/references/expression-syntax.md +1662 -0
- package/.merlin-core/skills/domain/n8n-automation/references/mcp-tools-expert.md +2111 -0
- package/.merlin-core/skills/domain/n8n-automation/references/node-configuration.md +2523 -0
- package/.merlin-core/skills/domain/n8n-automation/references/validation-expert.md +2491 -0
- package/.merlin-core/skills/domain/n8n-automation/references/workflow-patterns.md +4624 -0
- package/.merlin-core/skills/domain/ops-manual/SKILL.md +225 -0
- package/.merlin-core/skills/domain/ops-manual/references/elicitation-questions.md +141 -0
- package/.merlin-core/skills/domain/ops-manual/references/external-skills-registry.md +63 -0
- package/.merlin-core/skills/domain/ops-manual/references/operations-template.yaml +132 -0
- package/.merlin-core/skills/domain/remotion-best-practices/SKILL.md +99 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/3d.md +86 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/animations.md +27 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets.md +78 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/audio.md +172 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/calculate-metadata.md +131 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/can-decode.md +75 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/charts.md +68 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/compositions.md +154 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/display-captions.md +126 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/extract-frames.md +229 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/fonts.md +152 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-audio-duration.md +58 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-video-dimensions.md +68 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-video-duration.md +58 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/gifs.md +144 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/images.md +134 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/import-srt-captions.md +67 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/lottie.md +70 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/maps.md +414 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/measuring-dom-nodes.md +34 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/measuring-text.md +143 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/parameters.md +109 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/sequencing.md +118 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/tailwind.md +11 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/text-animations.md +20 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/timing.md +179 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transcribe-captions.md +19 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transitions.md +137 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transparent-videos.md +106 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/trimming.md +51 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/videos.md +171 -0
- package/.merlin-core/skills/domain/resend-email/SKILL.md +377 -0
- package/.merlin-core/skills/general/adversarial-review/SKILL.md +144 -0
- package/.merlin-core/skills/general/api-design/SKILL.md +513 -0
- package/.merlin-core/skills/general/apify-scrape/SKILL.md +137 -0
- package/.merlin-core/skills/general/apify-scrape/scripts/apify-scrape.sh +68 -0
- package/.merlin-core/skills/general/backup/SKILL.md +87 -0
- package/.merlin-core/skills/general/blkskrn/SKILL.md +392 -0
- package/.merlin-core/skills/general/blkskrn/references/animation-patterns.md +521 -0
- package/.merlin-core/skills/general/blkskrn/references/design-system.md +637 -0
- package/.merlin-core/skills/general/blkskrn/references/html-templates.md +440 -0
- package/.merlin-core/skills/general/blkskrn/references/presenter-template.md +45 -0
- package/.merlin-core/skills/general/blkskrn/references/slide-types.md +424 -0
- package/.merlin-core/skills/general/blkskrn/scripts/canvas-manager.js +502 -0
- package/.merlin-core/skills/general/blkskrn/scripts/presenter.js +90 -0
- package/.merlin-core/skills/general/blkskrn/templates/presenter.html +273 -0
- package/.merlin-core/skills/general/blkskrn/templates/slide-base.html +277 -0
- package/.merlin-core/skills/general/blkskrn/templates/viewer.html +165 -0
- package/.merlin-core/skills/general/browser-takeover/SKILL.md +53 -0
- package/.merlin-core/skills/general/claude-api/SKILL.md +90 -0
- package/.merlin-core/skills/general/code-javascript/SKILL.md +268 -0
- package/.merlin-core/skills/general/code-python/SKILL.md +424 -0
- package/.merlin-core/skills/general/code-style/SKILL.md +97 -0
- package/.merlin-core/skills/general/code-typescript/SKILL.md +361 -0
- package/.merlin-core/skills/general/cold-email/SKILL.md +164 -0
- package/.merlin-core/skills/general/cold-email/references/benchmarks.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/follow-up-sequences.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/frameworks.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/personalization.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/subject-lines.md +18 -0
- package/.merlin-core/skills/general/container-security/SKILL.md +462 -0
- package/.merlin-core/skills/general/context-management/SKILL.md +79 -0
- package/.merlin-core/skills/general/copy-editing/SKILL.md +501 -0
- package/.merlin-core/skills/general/copy-editing/references/checklist.md +18 -0
- package/.merlin-core/skills/general/copy-editing/references/content-refresh.md +18 -0
- package/.merlin-core/skills/general/copy-editing/references/plain-english-alternatives.md +18 -0
- package/.merlin-core/skills/general/copywriting/SKILL.md +294 -0
- package/.merlin-core/skills/general/copywriting/references/copy-frameworks.md +392 -0
- package/.merlin-core/skills/general/copywriting/references/natural-transitions.md +276 -0
- package/.merlin-core/skills/general/database/SKILL.md +561 -0
- package/.merlin-core/skills/general/database/references/postgres-concurrency.md +182 -0
- package/.merlin-core/skills/general/database/references/postgres-connections.md +97 -0
- package/.merlin-core/skills/general/database/references/postgres-data-patterns.md +159 -0
- package/.merlin-core/skills/general/database/references/postgres-monitoring.md +136 -0
- package/.merlin-core/skills/general/database/references/postgres-rls.md +140 -0
- package/.merlin-core/skills/general/database-provision/SKILL.md +56 -0
- package/.merlin-core/skills/general/deploy/SKILL.md +65 -0
- package/.merlin-core/skills/general/design-inspiration/SKILL.md +146 -0
- package/.merlin-core/skills/general/design-palette/SKILL.md +99 -0
- package/.merlin-core/skills/general/design-palette/references/full-palettes.md +144 -0
- package/.merlin-core/skills/general/design-system/SKILL.md +94 -0
- package/.merlin-core/skills/general/design-typography/SKILL.md +115 -0
- package/.merlin-core/skills/general/design-typography/references/full-pairings.md +144 -0
- package/.merlin-core/skills/general/design-ux-patterns/SKILL.md +155 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/charts-data-guidelines.md +197 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/landing-patterns.md +199 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/professional-ui-checklist.md +56 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/style-catalog.md +89 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/ux-guidelines.md +837 -0
- package/.merlin-core/skills/general/discover-cloud/SKILL.md +108 -0
- package/.merlin-core/skills/general/doc-sync/SKILL.md +52 -0
- package/.merlin-core/skills/general/document-sharding/SKILL.md +53 -0
- package/.merlin-core/skills/general/docx/SKILL.md +418 -0
- package/.merlin-core/skills/general/docx/references/windows-setup.md +27 -0
- package/.merlin-core/skills/general/docx/scripts/__init__.py +1 -0
- package/.merlin-core/skills/general/docx/scripts/accept_changes.py +135 -0
- package/.merlin-core/skills/general/docx/scripts/comment.py +318 -0
- package/.merlin-core/skills/general/docx/scripts/office/__init__.py +0 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/__init__.py +0 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/merge_runs.py +199 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/simplify_redlines.py +197 -0
- package/.merlin-core/skills/general/docx/scripts/office/pack.py +159 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/mce/mc.xsd +75 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.merlin-core/skills/general/docx/scripts/office/soffice.py +183 -0
- package/.merlin-core/skills/general/docx/scripts/office/unpack.py +132 -0
- package/.merlin-core/skills/general/docx/scripts/office/validate.py +111 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/__init__.py +15 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/base.py +847 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/docx.py +446 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/pptx.py +275 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/redlining.py +247 -0
- package/.merlin-core/skills/general/docx/scripts/templates/comments.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsIds.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/people.xml +3 -0
- package/.merlin-core/skills/general/elicitation/SKILL.md +188 -0
- package/.merlin-core/skills/general/engineering-audit/SKILL.md +122 -0
- package/.merlin-core/skills/general/find-and-edit/SKILL.md +102 -0
- package/.merlin-core/skills/general/first-party-docs/SKILL.md +51 -0
- package/.merlin-core/skills/general/frontend-design/SKILL.md +204 -0
- package/.merlin-core/skills/general/guardrails/SKILL.md +144 -0
- package/.merlin-core/skills/general/image-gen/SKILL.md +49 -0
- package/.merlin-core/skills/general/learning-capture/SKILL.md +192 -0
- package/.merlin-core/skills/general/lgpd-compliance-audit/SKILL.md +448 -0
- package/.merlin-core/skills/general/load-testing/SKILL.md +114 -0
- package/.merlin-core/skills/general/load-testing/docker/Dockerfile.dashboard +21 -0
- package/.merlin-core/skills/general/load-testing/docker/docker-compose.locust.yml +39 -0
- package/.merlin-core/skills/general/load-testing/requirements.txt +1 -0
- package/.merlin-core/skills/general/load-testing/scripts/compare_baseline.py +172 -0
- package/.merlin-core/skills/general/load-testing/scripts/run_local.py +245 -0
- package/.merlin-core/skills/general/load-testing/templates/load_shape_stepped.py +35 -0
- package/.merlin-core/skills/general/load-testing/templates/locustfile_dashboard.py +47 -0
- package/.merlin-core/skills/general/load-testing/templates/threshold_hook.py +36 -0
- package/.merlin-core/skills/general/mage-beauty/SKILL.md +89 -0
- package/.merlin-core/skills/general/mage-beauty/references/anti-patterns.md +148 -0
- package/.merlin-core/skills/general/mage-beauty/references/color-and-contrast.md +87 -0
- package/.merlin-core/skills/general/mage-beauty/references/interaction-design.md +99 -0
- package/.merlin-core/skills/general/mage-beauty/references/motion-design.md +90 -0
- package/.merlin-core/skills/general/mage-beauty/references/remotion-bridge.md +187 -0
- package/.merlin-core/skills/general/mage-beauty/references/responsive-and-multi-format.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/spatial-design.md +88 -0
- package/.merlin-core/skills/general/mage-beauty/references/typography.md +60 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-adapt.md +102 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-animate.md +97 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-audit.md +99 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-bolder.md +94 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-cinematic.md +128 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-clarify.md +107 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-colorize.md +106 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-critique.md +88 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-delight.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-distill.md +97 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-harden.md +79 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-layout.md +104 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-onboard.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-optimize.md +124 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-overdrive.md +105 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-polish.md +91 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-quieter.md +95 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-rebrand.md +127 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-shape.md +160 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-typeset.md +109 -0
- package/.merlin-core/skills/general/mage-beauty/references/voice-and-microcopy.md +137 -0
- package/.merlin-core/skills/general/mcp-builder/SKILL.md +92 -0
- package/.merlin-core/skills/general/network-debug/SKILL.md +51 -0
- package/.merlin-core/skills/general/next-best-practices/SKILL.md +177 -0
- package/.merlin-core/skills/general/next-best-practices/references/async-patterns.md +87 -0
- package/.merlin-core/skills/general/next-best-practices/references/bundling.md +182 -0
- package/.merlin-core/skills/general/next-best-practices/references/data-patterns.md +306 -0
- package/.merlin-core/skills/general/next-best-practices/references/debug-tricks.md +125 -0
- package/.merlin-core/skills/general/next-best-practices/references/directives.md +74 -0
- package/.merlin-core/skills/general/next-best-practices/references/error-handling.md +232 -0
- package/.merlin-core/skills/general/next-best-practices/references/file-conventions.md +141 -0
- package/.merlin-core/skills/general/next-best-practices/references/font.md +257 -0
- package/.merlin-core/skills/general/next-best-practices/references/functions.md +108 -0
- package/.merlin-core/skills/general/next-best-practices/references/hydration-error.md +88 -0
- package/.merlin-core/skills/general/next-best-practices/references/image.md +179 -0
- package/.merlin-core/skills/general/next-best-practices/references/metadata.md +296 -0
- package/.merlin-core/skills/general/next-best-practices/references/parallel-routes.md +298 -0
- package/.merlin-core/skills/general/next-best-practices/references/route-handlers.md +146 -0
- package/.merlin-core/skills/general/next-best-practices/references/rsc-boundaries.md +164 -0
- package/.merlin-core/skills/general/next-best-practices/references/runtime-selection.md +40 -0
- package/.merlin-core/skills/general/next-best-practices/references/scripts.md +141 -0
- package/.merlin-core/skills/general/next-best-practices/references/self-hosting.md +384 -0
- package/.merlin-core/skills/general/next-best-practices/references/suspense-boundaries.md +67 -0
- package/.merlin-core/skills/general/next-steps/SKILL.md +43 -0
- package/.merlin-core/skills/general/party-mode/SKILL.md +57 -0
- package/.merlin-core/skills/general/pdf/SKILL.md +298 -0
- package/.merlin-core/skills/general/pdf/references/forms.md +312 -0
- package/.merlin-core/skills/general/pdf/references/reference.md +640 -0
- package/.merlin-core/skills/general/pdf/references/windows-setup.md +40 -0
- package/.merlin-core/skills/general/pdf/scripts/check_bounding_boxes.py +65 -0
- package/.merlin-core/skills/general/pdf/scripts/check_fillable_fields.py +11 -0
- package/.merlin-core/skills/general/pdf/scripts/convert_pdf_to_images.py +33 -0
- package/.merlin-core/skills/general/pdf/scripts/create_validation_image.py +37 -0
- package/.merlin-core/skills/general/pdf/scripts/extract_form_field_info.py +122 -0
- package/.merlin-core/skills/general/pdf/scripts/extract_form_structure.py +115 -0
- package/.merlin-core/skills/general/pdf/scripts/fill_fillable_fields.py +98 -0
- package/.merlin-core/skills/general/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
- package/.merlin-core/skills/general/pptx/SKILL.md +133 -0
- package/.merlin-core/skills/general/pptx/references/editing.md +213 -0
- package/.merlin-core/skills/general/pptx/references/pptxgenjs.md +581 -0
- package/.merlin-core/skills/general/pptx/references/windows-setup.md +27 -0
- package/.merlin-core/skills/general/pptx/scripts/__init__.py +0 -0
- package/.merlin-core/skills/general/pptx/scripts/add_slide.py +195 -0
- package/.merlin-core/skills/general/pptx/scripts/clean.py +286 -0
- package/.merlin-core/skills/general/pptx/scripts/thumbnail.py +289 -0
- package/.merlin-core/skills/general/property-testing/SKILL.md +214 -0
- package/.merlin-core/skills/general/purge-leaked-secret/SKILL.md +383 -0
- package/.merlin-core/skills/general/reflection/SKILL.md +100 -0
- package/.merlin-core/skills/general/secret-safe-commit/SKILL.md +246 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/.gitleaks.toml +91 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/.pre-commit-config.yaml +57 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/secret-scan.yml +48 -0
- package/.merlin-core/skills/general/semantic-search/SKILL.md +79 -0
- package/.merlin-core/skills/general/skill-creator/SKILL.md +342 -0
- package/.merlin-core/skills/general/skill-creator/agents/analyzer.md +283 -0
- package/.merlin-core/skills/general/skill-creator/agents/comparator.md +211 -0
- package/.merlin-core/skills/general/skill-creator/agents/grader.md +227 -0
- package/.merlin-core/skills/general/skill-creator/assets/eval_review.html +146 -0
- package/.merlin-core/skills/general/skill-creator/eval-viewer/generate_review.py +471 -0
- package/.merlin-core/skills/general/skill-creator/eval-viewer/viewer.html +1325 -0
- package/.merlin-core/skills/general/skill-creator/references/schemas.md +439 -0
- package/.merlin-core/skills/general/skill-creator/scripts/__init__.py +0 -0
- package/.merlin-core/skills/general/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/.merlin-core/skills/general/skill-creator/scripts/generate_report.py +326 -0
- package/.merlin-core/skills/general/skill-creator/scripts/improve_description.py +247 -0
- package/.merlin-core/skills/general/skill-creator/scripts/package_skill.py +136 -0
- package/.merlin-core/skills/general/skill-creator/scripts/quick_validate.py +103 -0
- package/.merlin-core/skills/general/skill-creator/scripts/run_eval.py +310 -0
- package/.merlin-core/skills/general/skill-creator/scripts/run_loop.py +328 -0
- package/.merlin-core/skills/general/skill-creator/scripts/utils.py +47 -0
- package/.merlin-core/skills/general/start-here/SKILL.md +63 -0
- package/.merlin-core/skills/general/start-here/recipes.json +758 -0
- package/.merlin-core/skills/general/start-here/recipes.schema.json +57 -0
- package/.merlin-core/skills/general/static-analysis/SKILL.md +151 -0
- package/.merlin-core/skills/general/tailwind-design-system/SKILL.md +201 -0
- package/.merlin-core/skills/general/tailwind-design-system/references/advanced-v4.md +152 -0
- package/.merlin-core/skills/general/tailwind-design-system/references/component-patterns.md +353 -0
- package/.merlin-core/skills/general/teach-method/SKILL.md +86 -0
- package/.merlin-core/skills/general/team-execution/SKILL.md +67 -0
- package/.merlin-core/skills/general/testing/SKILL.md +412 -0
- package/.merlin-core/skills/general/token-economy/SKILL.md +55 -0
- package/.merlin-core/skills/general/vps-security-hardening/SKILL.md +406 -0
- package/.merlin-core/skills/general/web-quality/SKILL.md +180 -0
- package/.merlin-core/skills/general/webapp-testing/SKILL.md +153 -0
- package/.merlin-core/skills/general/webapp-testing/scripts/screenshot_compare.py +72 -0
- package/.merlin-core/skills/general/webapp-testing/scripts/with_server.py +103 -0
- package/.merlin-core/skills/general/xlsx/SKILL.md +167 -0
- package/.merlin-core/skills/general/xlsx/references/nodejs-sheetjs-styled-reports.md +141 -0
- package/.merlin-core/skills/general/xlsx/references/windows-setup.md +17 -0
- package/.merlin-core/skills/general/xlsx/scripts/recalc.py +184 -0
- package/.merlin-core/skills/general/xlsx/scripts/styled-report.js +130 -0
- package/.merlin-core/skills/general/yolo-mode/SKILL.md +60 -0
- package/.merlin-core/skills/general/youtube-transcript/SKILL.md +177 -0
- package/.merlin-core/skills/general/youtube-transcript/scripts/fetch_transcript.py +188 -0
- package/.merlin-core/skills/general/youtube-transcript/scripts/gladia_transcribe.mjs +230 -0
- package/.merlin-core/tools/commands/activate.js +72 -0
- package/.merlin-core/tools/commands/archive-thoughts.js +181 -0
- package/.merlin-core/tools/commands/backup.js +156 -0
- package/.merlin-core/tools/commands/certify-process.js +196 -0
- package/.merlin-core/tools/commands/convert.js +87 -0
- package/.merlin-core/tools/commands/cron.js +147 -0
- package/.merlin-core/tools/commands/disable.js +73 -0
- package/.merlin-core/tools/commands/doc-sync.js +127 -0
- package/.merlin-core/tools/commands/eval-skill.js +193 -0
- package/.merlin-core/tools/commands/frontmatter.js +49 -0
- package/.merlin-core/tools/commands/heartbeat.js +43 -0
- package/.merlin-core/tools/commands/index-thoughts.js +35 -0
- package/.merlin-core/tools/commands/install-remote-approve.js +184 -0
- package/.merlin-core/tools/commands/install.js +81 -0
- package/.merlin-core/tools/commands/lib/__verify__/diff-reports.js +170 -0
- package/.merlin-core/tools/commands/lib/fs-safe.js +186 -0
- package/.merlin-core/tools/commands/lib/preflight.js +607 -0
- package/.merlin-core/tools/commands/lib/preserve.js +232 -0
- package/.merlin-core/tools/commands/lib/project-config.template.yaml +69 -0
- package/.merlin-core/tools/commands/lib/report.js +231 -0
- package/.merlin-core/tools/commands/lib/settings-merge.js +134 -0
- package/.merlin-core/tools/commands/license.js +52 -0
- package/.merlin-core/tools/commands/list.js +125 -0
- package/.merlin-core/tools/commands/migrate-alkimia.js +271 -0
- package/.merlin-core/tools/commands/modules.js +68 -0
- package/.merlin-core/tools/commands/provision.js +83 -0
- package/.merlin-core/tools/commands/prune-feedback.js +114 -0
- package/.merlin-core/tools/commands/run-process.js +28 -0
- package/.merlin-core/tools/commands/state.js +79 -0
- package/.merlin-core/tools/commands/sync-bridges.js +197 -0
- package/.merlin-core/tools/commands/upgrade.js +1135 -0
- package/.merlin-core/tools/commands/validate-recipes.js +218 -0
- package/.merlin-core/tools/commands/validate.js +159 -0
- package/.merlin-core/tools/commands/yolo.js +82 -0
- package/.merlin-core/tools/compose-rules.mjs +179 -0
- package/.merlin-core/tools/disable-module.mjs +150 -0
- package/.merlin-core/tools/lib/deployer.mjs +131 -0
- package/.merlin-core/tools/lib/modules-activation.mjs +225 -0
- package/.merlin-core/tools/merlin-tools.js +153 -0
- package/.merlin-core/tools/migrate-frontmatter-v3.js +192 -0
- package/.merlin-core/tools/modules-catalog.mjs +174 -0
- package/.merlin-core/tools/provision-module.mjs +191 -0
- package/.merlin-core/tools/verify-module.mjs +99 -0
- package/.merlin-core/tools/vps-security-audit.sh +234 -0
- package/INSTALL.md +312 -0
- package/LICENSE +118 -0
- package/PRIVACY-LICENSING.md +65 -0
- package/README.md +391 -0
- package/bin/README.md +15 -0
- package/bin/convert-to-merlin.sh +109 -0
- package/bin/fleet-patch-hooks.sh +144 -0
- package/bin/fleet-patch-v3-fixes.sh +127 -0
- package/bin/merlin-init.js +232 -0
- package/bin/merlin.js +321 -0
- package/package.json +127 -0
|
@@ -0,0 +1,560 @@
|
|
|
1
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns="http://schemas.microsoft.com/office/word/2010/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2010/wordml">
|
|
2
|
+
<!-- <xsd:import id="rel" namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="orel.xsd"/> -->
|
|
3
|
+
<xsd:import id="w" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/>
|
|
4
|
+
<!-- <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="oartbasetypes.xsd"/>
|
|
5
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="oartsplineproperties.xsd"/> -->
|
|
6
|
+
<xsd:complexType name="CT_LongHexNumber">
|
|
7
|
+
<xsd:attribute name="val" type="w:ST_LongHexNumber" use="required"/>
|
|
8
|
+
</xsd:complexType>
|
|
9
|
+
<xsd:simpleType name="ST_OnOff">
|
|
10
|
+
<xsd:restriction base="xsd:string">
|
|
11
|
+
<xsd:enumeration value="true"/>
|
|
12
|
+
<xsd:enumeration value="false"/>
|
|
13
|
+
<xsd:enumeration value="0"/>
|
|
14
|
+
<xsd:enumeration value="1"/>
|
|
15
|
+
</xsd:restriction>
|
|
16
|
+
</xsd:simpleType>
|
|
17
|
+
<xsd:complexType name="CT_OnOff">
|
|
18
|
+
<xsd:attribute name="val" type="ST_OnOff"/>
|
|
19
|
+
</xsd:complexType>
|
|
20
|
+
<xsd:element name="docId" type="CT_LongHexNumber"/>
|
|
21
|
+
<xsd:element name="conflictMode" type="CT_OnOff"/>
|
|
22
|
+
<xsd:attributeGroup name="AG_Parids">
|
|
23
|
+
<xsd:attribute name="paraId" type="w:ST_LongHexNumber"/>
|
|
24
|
+
<xsd:attribute name="textId" type="w:ST_LongHexNumber"/>
|
|
25
|
+
</xsd:attributeGroup>
|
|
26
|
+
<xsd:attribute name="anchorId" type="w:ST_LongHexNumber"/>
|
|
27
|
+
<xsd:attribute name="noSpellErr" type="ST_OnOff"/>
|
|
28
|
+
<xsd:element name="customXmlConflictInsRangeStart" type="w:CT_TrackChange"/>
|
|
29
|
+
<xsd:element name="customXmlConflictInsRangeEnd" type="w:CT_Markup"/>
|
|
30
|
+
<xsd:element name="customXmlConflictDelRangeStart" type="w:CT_TrackChange"/>
|
|
31
|
+
<xsd:element name="customXmlConflictDelRangeEnd" type="w:CT_Markup"/>
|
|
32
|
+
<xsd:group name="EG_RunLevelConflicts">
|
|
33
|
+
<xsd:sequence>
|
|
34
|
+
<xsd:element name="conflictIns" type="w:CT_RunTrackChange" minOccurs="0"/>
|
|
35
|
+
<xsd:element name="conflictDel" type="w:CT_RunTrackChange" minOccurs="0"/>
|
|
36
|
+
</xsd:sequence>
|
|
37
|
+
</xsd:group>
|
|
38
|
+
<xsd:group name="EG_Conflicts">
|
|
39
|
+
<xsd:choice>
|
|
40
|
+
<xsd:element name="conflictIns" type="w:CT_TrackChange" minOccurs="0"/>
|
|
41
|
+
<xsd:element name="conflictDel" type="w:CT_TrackChange" minOccurs="0"/>
|
|
42
|
+
</xsd:choice>
|
|
43
|
+
</xsd:group>
|
|
44
|
+
<xsd:complexType name="CT_Percentage">
|
|
45
|
+
<xsd:attribute name="val" type="a:ST_Percentage" use="required"/>
|
|
46
|
+
</xsd:complexType>
|
|
47
|
+
<xsd:complexType name="CT_PositiveFixedPercentage">
|
|
48
|
+
<xsd:attribute name="val" type="a:ST_PositiveFixedPercentage" use="required"/>
|
|
49
|
+
</xsd:complexType>
|
|
50
|
+
<xsd:complexType name="CT_PositivePercentage">
|
|
51
|
+
<xsd:attribute name="val" type="a:ST_PositivePercentage" use="required"/>
|
|
52
|
+
</xsd:complexType>
|
|
53
|
+
<xsd:simpleType name="ST_SchemeColorVal">
|
|
54
|
+
<xsd:restriction base="xsd:string">
|
|
55
|
+
<xsd:enumeration value="bg1"/>
|
|
56
|
+
<xsd:enumeration value="tx1"/>
|
|
57
|
+
<xsd:enumeration value="bg2"/>
|
|
58
|
+
<xsd:enumeration value="tx2"/>
|
|
59
|
+
<xsd:enumeration value="accent1"/>
|
|
60
|
+
<xsd:enumeration value="accent2"/>
|
|
61
|
+
<xsd:enumeration value="accent3"/>
|
|
62
|
+
<xsd:enumeration value="accent4"/>
|
|
63
|
+
<xsd:enumeration value="accent5"/>
|
|
64
|
+
<xsd:enumeration value="accent6"/>
|
|
65
|
+
<xsd:enumeration value="hlink"/>
|
|
66
|
+
<xsd:enumeration value="folHlink"/>
|
|
67
|
+
<xsd:enumeration value="dk1"/>
|
|
68
|
+
<xsd:enumeration value="lt1"/>
|
|
69
|
+
<xsd:enumeration value="dk2"/>
|
|
70
|
+
<xsd:enumeration value="lt2"/>
|
|
71
|
+
<xsd:enumeration value="phClr"/>
|
|
72
|
+
</xsd:restriction>
|
|
73
|
+
</xsd:simpleType>
|
|
74
|
+
<xsd:simpleType name="ST_RectAlignment">
|
|
75
|
+
<xsd:restriction base="xsd:string">
|
|
76
|
+
<xsd:enumeration value="none"/>
|
|
77
|
+
<xsd:enumeration value="tl"/>
|
|
78
|
+
<xsd:enumeration value="t"/>
|
|
79
|
+
<xsd:enumeration value="tr"/>
|
|
80
|
+
<xsd:enumeration value="l"/>
|
|
81
|
+
<xsd:enumeration value="ctr"/>
|
|
82
|
+
<xsd:enumeration value="r"/>
|
|
83
|
+
<xsd:enumeration value="bl"/>
|
|
84
|
+
<xsd:enumeration value="b"/>
|
|
85
|
+
<xsd:enumeration value="br"/>
|
|
86
|
+
</xsd:restriction>
|
|
87
|
+
</xsd:simpleType>
|
|
88
|
+
<xsd:simpleType name="ST_PathShadeType">
|
|
89
|
+
<xsd:restriction base="xsd:string">
|
|
90
|
+
<xsd:enumeration value="shape"/>
|
|
91
|
+
<xsd:enumeration value="circle"/>
|
|
92
|
+
<xsd:enumeration value="rect"/>
|
|
93
|
+
</xsd:restriction>
|
|
94
|
+
</xsd:simpleType>
|
|
95
|
+
<xsd:simpleType name="ST_LineCap">
|
|
96
|
+
<xsd:restriction base="xsd:string">
|
|
97
|
+
<xsd:enumeration value="rnd"/>
|
|
98
|
+
<xsd:enumeration value="sq"/>
|
|
99
|
+
<xsd:enumeration value="flat"/>
|
|
100
|
+
</xsd:restriction>
|
|
101
|
+
</xsd:simpleType>
|
|
102
|
+
<xsd:simpleType name="ST_PresetLineDashVal">
|
|
103
|
+
<xsd:restriction base="xsd:string">
|
|
104
|
+
<xsd:enumeration value="solid"/>
|
|
105
|
+
<xsd:enumeration value="dot"/>
|
|
106
|
+
<xsd:enumeration value="sysDot"/>
|
|
107
|
+
<xsd:enumeration value="dash"/>
|
|
108
|
+
<xsd:enumeration value="sysDash"/>
|
|
109
|
+
<xsd:enumeration value="lgDash"/>
|
|
110
|
+
<xsd:enumeration value="dashDot"/>
|
|
111
|
+
<xsd:enumeration value="sysDashDot"/>
|
|
112
|
+
<xsd:enumeration value="lgDashDot"/>
|
|
113
|
+
<xsd:enumeration value="lgDashDotDot"/>
|
|
114
|
+
<xsd:enumeration value="sysDashDotDot"/>
|
|
115
|
+
</xsd:restriction>
|
|
116
|
+
</xsd:simpleType>
|
|
117
|
+
<xsd:simpleType name="ST_PenAlignment">
|
|
118
|
+
<xsd:restriction base="xsd:string">
|
|
119
|
+
<xsd:enumeration value="ctr"/>
|
|
120
|
+
<xsd:enumeration value="in"/>
|
|
121
|
+
</xsd:restriction>
|
|
122
|
+
</xsd:simpleType>
|
|
123
|
+
<xsd:simpleType name="ST_CompoundLine">
|
|
124
|
+
<xsd:restriction base="xsd:string">
|
|
125
|
+
<xsd:enumeration value="sng"/>
|
|
126
|
+
<xsd:enumeration value="dbl"/>
|
|
127
|
+
<xsd:enumeration value="thickThin"/>
|
|
128
|
+
<xsd:enumeration value="thinThick"/>
|
|
129
|
+
<xsd:enumeration value="tri"/>
|
|
130
|
+
</xsd:restriction>
|
|
131
|
+
</xsd:simpleType>
|
|
132
|
+
<xsd:complexType name="CT_RelativeRect">
|
|
133
|
+
<xsd:attribute name="l" use="optional" type="a:ST_Percentage"/>
|
|
134
|
+
<xsd:attribute name="t" use="optional" type="a:ST_Percentage"/>
|
|
135
|
+
<xsd:attribute name="r" use="optional" type="a:ST_Percentage"/>
|
|
136
|
+
<xsd:attribute name="b" use="optional" type="a:ST_Percentage"/>
|
|
137
|
+
</xsd:complexType>
|
|
138
|
+
<xsd:group name="EG_ColorTransform">
|
|
139
|
+
<xsd:choice>
|
|
140
|
+
<xsd:element name="tint" type="CT_PositiveFixedPercentage"/>
|
|
141
|
+
<xsd:element name="shade" type="CT_PositiveFixedPercentage"/>
|
|
142
|
+
<xsd:element name="alpha" type="CT_PositiveFixedPercentage"/>
|
|
143
|
+
<xsd:element name="hueMod" type="CT_PositivePercentage"/>
|
|
144
|
+
<xsd:element name="sat" type="CT_Percentage"/>
|
|
145
|
+
<xsd:element name="satOff" type="CT_Percentage"/>
|
|
146
|
+
<xsd:element name="satMod" type="CT_Percentage"/>
|
|
147
|
+
<xsd:element name="lum" type="CT_Percentage"/>
|
|
148
|
+
<xsd:element name="lumOff" type="CT_Percentage"/>
|
|
149
|
+
<xsd:element name="lumMod" type="CT_Percentage"/>
|
|
150
|
+
</xsd:choice>
|
|
151
|
+
</xsd:group>
|
|
152
|
+
<xsd:complexType name="CT_SRgbColor">
|
|
153
|
+
<xsd:sequence>
|
|
154
|
+
<xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>
|
|
155
|
+
</xsd:sequence>
|
|
156
|
+
<xsd:attribute name="val" type="s:ST_HexColorRGB" use="required"/>
|
|
157
|
+
</xsd:complexType>
|
|
158
|
+
<xsd:complexType name="CT_SchemeColor">
|
|
159
|
+
<xsd:sequence>
|
|
160
|
+
<xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>
|
|
161
|
+
</xsd:sequence>
|
|
162
|
+
<xsd:attribute name="val" type="ST_SchemeColorVal" use="required"/>
|
|
163
|
+
</xsd:complexType>
|
|
164
|
+
<xsd:group name="EG_ColorChoice">
|
|
165
|
+
<xsd:choice>
|
|
166
|
+
<xsd:element name="srgbClr" type="CT_SRgbColor"/>
|
|
167
|
+
<xsd:element name="schemeClr" type="CT_SchemeColor"/>
|
|
168
|
+
</xsd:choice>
|
|
169
|
+
</xsd:group>
|
|
170
|
+
<xsd:complexType name="CT_Color">
|
|
171
|
+
<xsd:sequence>
|
|
172
|
+
<xsd:group ref="EG_ColorChoice"/>
|
|
173
|
+
</xsd:sequence>
|
|
174
|
+
</xsd:complexType>
|
|
175
|
+
<xsd:complexType name="CT_GradientStop">
|
|
176
|
+
<xsd:sequence>
|
|
177
|
+
<xsd:group ref="EG_ColorChoice"/>
|
|
178
|
+
</xsd:sequence>
|
|
179
|
+
<xsd:attribute name="pos" type="a:ST_PositiveFixedPercentage" use="required"/>
|
|
180
|
+
</xsd:complexType>
|
|
181
|
+
<xsd:complexType name="CT_GradientStopList">
|
|
182
|
+
<xsd:sequence>
|
|
183
|
+
<xsd:element name="gs" type="CT_GradientStop" minOccurs="2" maxOccurs="10"/>
|
|
184
|
+
</xsd:sequence>
|
|
185
|
+
</xsd:complexType>
|
|
186
|
+
<xsd:complexType name="CT_LinearShadeProperties">
|
|
187
|
+
<xsd:attribute name="ang" type="a:ST_PositiveFixedAngle" use="optional"/>
|
|
188
|
+
<xsd:attribute name="scaled" type="ST_OnOff" use="optional"/>
|
|
189
|
+
</xsd:complexType>
|
|
190
|
+
<xsd:complexType name="CT_PathShadeProperties">
|
|
191
|
+
<xsd:sequence>
|
|
192
|
+
<xsd:element name="fillToRect" type="CT_RelativeRect" minOccurs="0"/>
|
|
193
|
+
</xsd:sequence>
|
|
194
|
+
<xsd:attribute name="path" type="ST_PathShadeType" use="optional"/>
|
|
195
|
+
</xsd:complexType>
|
|
196
|
+
<xsd:group name="EG_ShadeProperties">
|
|
197
|
+
<xsd:choice>
|
|
198
|
+
<xsd:element name="lin" type="CT_LinearShadeProperties"/>
|
|
199
|
+
<xsd:element name="path" type="CT_PathShadeProperties"/>
|
|
200
|
+
</xsd:choice>
|
|
201
|
+
</xsd:group>
|
|
202
|
+
<xsd:complexType name="CT_SolidColorFillProperties">
|
|
203
|
+
<xsd:sequence>
|
|
204
|
+
<xsd:group ref="EG_ColorChoice" minOccurs="0"/>
|
|
205
|
+
</xsd:sequence>
|
|
206
|
+
</xsd:complexType>
|
|
207
|
+
<xsd:complexType name="CT_GradientFillProperties">
|
|
208
|
+
<xsd:sequence>
|
|
209
|
+
<xsd:element name="gsLst" type="CT_GradientStopList" minOccurs="0"/>
|
|
210
|
+
<xsd:group ref="EG_ShadeProperties" minOccurs="0"/>
|
|
211
|
+
</xsd:sequence>
|
|
212
|
+
</xsd:complexType>
|
|
213
|
+
<xsd:group name="EG_FillProperties">
|
|
214
|
+
<xsd:choice>
|
|
215
|
+
<xsd:element name="noFill" type="w:CT_Empty"/>
|
|
216
|
+
<xsd:element name="solidFill" type="CT_SolidColorFillProperties"/>
|
|
217
|
+
<xsd:element name="gradFill" type="CT_GradientFillProperties"/>
|
|
218
|
+
</xsd:choice>
|
|
219
|
+
</xsd:group>
|
|
220
|
+
<xsd:complexType name="CT_PresetLineDashProperties">
|
|
221
|
+
<xsd:attribute name="val" type="ST_PresetLineDashVal" use="optional"/>
|
|
222
|
+
</xsd:complexType>
|
|
223
|
+
<xsd:group name="EG_LineDashProperties">
|
|
224
|
+
<xsd:choice>
|
|
225
|
+
<xsd:element name="prstDash" type="CT_PresetLineDashProperties"/>
|
|
226
|
+
</xsd:choice>
|
|
227
|
+
</xsd:group>
|
|
228
|
+
<xsd:complexType name="CT_LineJoinMiterProperties">
|
|
229
|
+
<xsd:attribute name="lim" type="a:ST_PositivePercentage" use="optional"/>
|
|
230
|
+
</xsd:complexType>
|
|
231
|
+
<xsd:group name="EG_LineJoinProperties">
|
|
232
|
+
<xsd:choice>
|
|
233
|
+
<xsd:element name="round" type="w:CT_Empty"/>
|
|
234
|
+
<xsd:element name="bevel" type="w:CT_Empty"/>
|
|
235
|
+
<xsd:element name="miter" type="CT_LineJoinMiterProperties"/>
|
|
236
|
+
</xsd:choice>
|
|
237
|
+
</xsd:group>
|
|
238
|
+
<xsd:simpleType name="ST_PresetCameraType">
|
|
239
|
+
<xsd:restriction base="xsd:token">
|
|
240
|
+
<xsd:enumeration value="legacyObliqueTopLeft"/>
|
|
241
|
+
<xsd:enumeration value="legacyObliqueTop"/>
|
|
242
|
+
<xsd:enumeration value="legacyObliqueTopRight"/>
|
|
243
|
+
<xsd:enumeration value="legacyObliqueLeft"/>
|
|
244
|
+
<xsd:enumeration value="legacyObliqueFront"/>
|
|
245
|
+
<xsd:enumeration value="legacyObliqueRight"/>
|
|
246
|
+
<xsd:enumeration value="legacyObliqueBottomLeft"/>
|
|
247
|
+
<xsd:enumeration value="legacyObliqueBottom"/>
|
|
248
|
+
<xsd:enumeration value="legacyObliqueBottomRight"/>
|
|
249
|
+
<xsd:enumeration value="legacyPerspectiveTopLeft"/>
|
|
250
|
+
<xsd:enumeration value="legacyPerspectiveTop"/>
|
|
251
|
+
<xsd:enumeration value="legacyPerspectiveTopRight"/>
|
|
252
|
+
<xsd:enumeration value="legacyPerspectiveLeft"/>
|
|
253
|
+
<xsd:enumeration value="legacyPerspectiveFront"/>
|
|
254
|
+
<xsd:enumeration value="legacyPerspectiveRight"/>
|
|
255
|
+
<xsd:enumeration value="legacyPerspectiveBottomLeft"/>
|
|
256
|
+
<xsd:enumeration value="legacyPerspectiveBottom"/>
|
|
257
|
+
<xsd:enumeration value="legacyPerspectiveBottomRight"/>
|
|
258
|
+
<xsd:enumeration value="orthographicFront"/>
|
|
259
|
+
<xsd:enumeration value="isometricTopUp"/>
|
|
260
|
+
<xsd:enumeration value="isometricTopDown"/>
|
|
261
|
+
<xsd:enumeration value="isometricBottomUp"/>
|
|
262
|
+
<xsd:enumeration value="isometricBottomDown"/>
|
|
263
|
+
<xsd:enumeration value="isometricLeftUp"/>
|
|
264
|
+
<xsd:enumeration value="isometricLeftDown"/>
|
|
265
|
+
<xsd:enumeration value="isometricRightUp"/>
|
|
266
|
+
<xsd:enumeration value="isometricRightDown"/>
|
|
267
|
+
<xsd:enumeration value="isometricOffAxis1Left"/>
|
|
268
|
+
<xsd:enumeration value="isometricOffAxis1Right"/>
|
|
269
|
+
<xsd:enumeration value="isometricOffAxis1Top"/>
|
|
270
|
+
<xsd:enumeration value="isometricOffAxis2Left"/>
|
|
271
|
+
<xsd:enumeration value="isometricOffAxis2Right"/>
|
|
272
|
+
<xsd:enumeration value="isometricOffAxis2Top"/>
|
|
273
|
+
<xsd:enumeration value="isometricOffAxis3Left"/>
|
|
274
|
+
<xsd:enumeration value="isometricOffAxis3Right"/>
|
|
275
|
+
<xsd:enumeration value="isometricOffAxis3Bottom"/>
|
|
276
|
+
<xsd:enumeration value="isometricOffAxis4Left"/>
|
|
277
|
+
<xsd:enumeration value="isometricOffAxis4Right"/>
|
|
278
|
+
<xsd:enumeration value="isometricOffAxis4Bottom"/>
|
|
279
|
+
<xsd:enumeration value="obliqueTopLeft"/>
|
|
280
|
+
<xsd:enumeration value="obliqueTop"/>
|
|
281
|
+
<xsd:enumeration value="obliqueTopRight"/>
|
|
282
|
+
<xsd:enumeration value="obliqueLeft"/>
|
|
283
|
+
<xsd:enumeration value="obliqueRight"/>
|
|
284
|
+
<xsd:enumeration value="obliqueBottomLeft"/>
|
|
285
|
+
<xsd:enumeration value="obliqueBottom"/>
|
|
286
|
+
<xsd:enumeration value="obliqueBottomRight"/>
|
|
287
|
+
<xsd:enumeration value="perspectiveFront"/>
|
|
288
|
+
<xsd:enumeration value="perspectiveLeft"/>
|
|
289
|
+
<xsd:enumeration value="perspectiveRight"/>
|
|
290
|
+
<xsd:enumeration value="perspectiveAbove"/>
|
|
291
|
+
<xsd:enumeration value="perspectiveBelow"/>
|
|
292
|
+
<xsd:enumeration value="perspectiveAboveLeftFacing"/>
|
|
293
|
+
<xsd:enumeration value="perspectiveAboveRightFacing"/>
|
|
294
|
+
<xsd:enumeration value="perspectiveContrastingLeftFacing"/>
|
|
295
|
+
<xsd:enumeration value="perspectiveContrastingRightFacing"/>
|
|
296
|
+
<xsd:enumeration value="perspectiveHeroicLeftFacing"/>
|
|
297
|
+
<xsd:enumeration value="perspectiveHeroicRightFacing"/>
|
|
298
|
+
<xsd:enumeration value="perspectiveHeroicExtremeLeftFacing"/>
|
|
299
|
+
<xsd:enumeration value="perspectiveHeroicExtremeRightFacing"/>
|
|
300
|
+
<xsd:enumeration value="perspectiveRelaxed"/>
|
|
301
|
+
<xsd:enumeration value="perspectiveRelaxedModerately"/>
|
|
302
|
+
</xsd:restriction>
|
|
303
|
+
</xsd:simpleType>
|
|
304
|
+
<xsd:complexType name="CT_Camera">
|
|
305
|
+
<xsd:attribute name="prst" use="required" type="ST_PresetCameraType"/>
|
|
306
|
+
</xsd:complexType>
|
|
307
|
+
<xsd:complexType name="CT_SphereCoords">
|
|
308
|
+
<xsd:attribute name="lat" type="a:ST_PositiveFixedAngle" use="required"/>
|
|
309
|
+
<xsd:attribute name="lon" type="a:ST_PositiveFixedAngle" use="required"/>
|
|
310
|
+
<xsd:attribute name="rev" type="a:ST_PositiveFixedAngle" use="required"/>
|
|
311
|
+
</xsd:complexType>
|
|
312
|
+
<xsd:simpleType name="ST_LightRigType">
|
|
313
|
+
<xsd:restriction base="xsd:token">
|
|
314
|
+
<xsd:enumeration value="legacyFlat1"/>
|
|
315
|
+
<xsd:enumeration value="legacyFlat2"/>
|
|
316
|
+
<xsd:enumeration value="legacyFlat3"/>
|
|
317
|
+
<xsd:enumeration value="legacyFlat4"/>
|
|
318
|
+
<xsd:enumeration value="legacyNormal1"/>
|
|
319
|
+
<xsd:enumeration value="legacyNormal2"/>
|
|
320
|
+
<xsd:enumeration value="legacyNormal3"/>
|
|
321
|
+
<xsd:enumeration value="legacyNormal4"/>
|
|
322
|
+
<xsd:enumeration value="legacyHarsh1"/>
|
|
323
|
+
<xsd:enumeration value="legacyHarsh2"/>
|
|
324
|
+
<xsd:enumeration value="legacyHarsh3"/>
|
|
325
|
+
<xsd:enumeration value="legacyHarsh4"/>
|
|
326
|
+
<xsd:enumeration value="threePt"/>
|
|
327
|
+
<xsd:enumeration value="balanced"/>
|
|
328
|
+
<xsd:enumeration value="soft"/>
|
|
329
|
+
<xsd:enumeration value="harsh"/>
|
|
330
|
+
<xsd:enumeration value="flood"/>
|
|
331
|
+
<xsd:enumeration value="contrasting"/>
|
|
332
|
+
<xsd:enumeration value="morning"/>
|
|
333
|
+
<xsd:enumeration value="sunrise"/>
|
|
334
|
+
<xsd:enumeration value="sunset"/>
|
|
335
|
+
<xsd:enumeration value="chilly"/>
|
|
336
|
+
<xsd:enumeration value="freezing"/>
|
|
337
|
+
<xsd:enumeration value="flat"/>
|
|
338
|
+
<xsd:enumeration value="twoPt"/>
|
|
339
|
+
<xsd:enumeration value="glow"/>
|
|
340
|
+
<xsd:enumeration value="brightRoom"/>
|
|
341
|
+
</xsd:restriction>
|
|
342
|
+
</xsd:simpleType>
|
|
343
|
+
<xsd:simpleType name="ST_LightRigDirection">
|
|
344
|
+
<xsd:restriction base="xsd:token">
|
|
345
|
+
<xsd:enumeration value="tl"/>
|
|
346
|
+
<xsd:enumeration value="t"/>
|
|
347
|
+
<xsd:enumeration value="tr"/>
|
|
348
|
+
<xsd:enumeration value="l"/>
|
|
349
|
+
<xsd:enumeration value="r"/>
|
|
350
|
+
<xsd:enumeration value="bl"/>
|
|
351
|
+
<xsd:enumeration value="b"/>
|
|
352
|
+
<xsd:enumeration value="br"/>
|
|
353
|
+
</xsd:restriction>
|
|
354
|
+
</xsd:simpleType>
|
|
355
|
+
<xsd:complexType name="CT_LightRig">
|
|
356
|
+
<xsd:sequence>
|
|
357
|
+
<xsd:element name="rot" type="CT_SphereCoords" minOccurs="0"/>
|
|
358
|
+
</xsd:sequence>
|
|
359
|
+
<xsd:attribute name="rig" type="ST_LightRigType" use="required"/>
|
|
360
|
+
<xsd:attribute name="dir" type="ST_LightRigDirection" use="required"/>
|
|
361
|
+
</xsd:complexType>
|
|
362
|
+
<xsd:simpleType name="ST_BevelPresetType">
|
|
363
|
+
<xsd:restriction base="xsd:token">
|
|
364
|
+
<xsd:enumeration value="relaxedInset"/>
|
|
365
|
+
<xsd:enumeration value="circle"/>
|
|
366
|
+
<xsd:enumeration value="slope"/>
|
|
367
|
+
<xsd:enumeration value="cross"/>
|
|
368
|
+
<xsd:enumeration value="angle"/>
|
|
369
|
+
<xsd:enumeration value="softRound"/>
|
|
370
|
+
<xsd:enumeration value="convex"/>
|
|
371
|
+
<xsd:enumeration value="coolSlant"/>
|
|
372
|
+
<xsd:enumeration value="divot"/>
|
|
373
|
+
<xsd:enumeration value="riblet"/>
|
|
374
|
+
<xsd:enumeration value="hardEdge"/>
|
|
375
|
+
<xsd:enumeration value="artDeco"/>
|
|
376
|
+
</xsd:restriction>
|
|
377
|
+
</xsd:simpleType>
|
|
378
|
+
<xsd:complexType name="CT_Bevel">
|
|
379
|
+
<xsd:attribute name="w" type="a:ST_PositiveCoordinate" use="optional"/>
|
|
380
|
+
<xsd:attribute name="h" type="a:ST_PositiveCoordinate" use="optional"/>
|
|
381
|
+
<xsd:attribute name="prst" type="ST_BevelPresetType" use="optional"/>
|
|
382
|
+
</xsd:complexType>
|
|
383
|
+
<xsd:simpleType name="ST_PresetMaterialType">
|
|
384
|
+
<xsd:restriction base="xsd:token">
|
|
385
|
+
<xsd:enumeration value="legacyMatte"/>
|
|
386
|
+
<xsd:enumeration value="legacyPlastic"/>
|
|
387
|
+
<xsd:enumeration value="legacyMetal"/>
|
|
388
|
+
<xsd:enumeration value="legacyWireframe"/>
|
|
389
|
+
<xsd:enumeration value="matte"/>
|
|
390
|
+
<xsd:enumeration value="plastic"/>
|
|
391
|
+
<xsd:enumeration value="metal"/>
|
|
392
|
+
<xsd:enumeration value="warmMatte"/>
|
|
393
|
+
<xsd:enumeration value="translucentPowder"/>
|
|
394
|
+
<xsd:enumeration value="powder"/>
|
|
395
|
+
<xsd:enumeration value="dkEdge"/>
|
|
396
|
+
<xsd:enumeration value="softEdge"/>
|
|
397
|
+
<xsd:enumeration value="clear"/>
|
|
398
|
+
<xsd:enumeration value="flat"/>
|
|
399
|
+
<xsd:enumeration value="softmetal"/>
|
|
400
|
+
<xsd:enumeration value="none"/>
|
|
401
|
+
</xsd:restriction>
|
|
402
|
+
</xsd:simpleType>
|
|
403
|
+
<xsd:complexType name="CT_Glow">
|
|
404
|
+
<xsd:sequence>
|
|
405
|
+
<xsd:group ref="EG_ColorChoice"/>
|
|
406
|
+
</xsd:sequence>
|
|
407
|
+
<xsd:attribute name="rad" use="optional" type="a:ST_PositiveCoordinate"/>
|
|
408
|
+
</xsd:complexType>
|
|
409
|
+
<xsd:complexType name="CT_Shadow">
|
|
410
|
+
<xsd:sequence>
|
|
411
|
+
<xsd:group ref="EG_ColorChoice"/>
|
|
412
|
+
</xsd:sequence>
|
|
413
|
+
<xsd:attribute name="blurRad" use="optional" type="a:ST_PositiveCoordinate"/>
|
|
414
|
+
<xsd:attribute name="dist" use="optional" type="a:ST_PositiveCoordinate"/>
|
|
415
|
+
<xsd:attribute name="dir" use="optional" type="a:ST_PositiveFixedAngle"/>
|
|
416
|
+
<xsd:attribute name="sx" use="optional" type="a:ST_Percentage"/>
|
|
417
|
+
<xsd:attribute name="sy" use="optional" type="a:ST_Percentage"/>
|
|
418
|
+
<xsd:attribute name="kx" use="optional" type="a:ST_FixedAngle"/>
|
|
419
|
+
<xsd:attribute name="ky" use="optional" type="a:ST_FixedAngle"/>
|
|
420
|
+
<xsd:attribute name="algn" use="optional" type="ST_RectAlignment"/>
|
|
421
|
+
</xsd:complexType>
|
|
422
|
+
<xsd:complexType name="CT_Reflection">
|
|
423
|
+
<xsd:attribute name="blurRad" use="optional" type="a:ST_PositiveCoordinate"/>
|
|
424
|
+
<xsd:attribute name="stA" use="optional" type="a:ST_PositiveFixedPercentage"/>
|
|
425
|
+
<xsd:attribute name="stPos" use="optional" type="a:ST_PositiveFixedPercentage"/>
|
|
426
|
+
<xsd:attribute name="endA" use="optional" type="a:ST_PositiveFixedPercentage"/>
|
|
427
|
+
<xsd:attribute name="endPos" use="optional" type="a:ST_PositiveFixedPercentage"/>
|
|
428
|
+
<xsd:attribute name="dist" use="optional" type="a:ST_PositiveCoordinate"/>
|
|
429
|
+
<xsd:attribute name="dir" use="optional" type="a:ST_PositiveFixedAngle"/>
|
|
430
|
+
<xsd:attribute name="fadeDir" use="optional" type="a:ST_PositiveFixedAngle"/>
|
|
431
|
+
<xsd:attribute name="sx" use="optional" type="a:ST_Percentage"/>
|
|
432
|
+
<xsd:attribute name="sy" use="optional" type="a:ST_Percentage"/>
|
|
433
|
+
<xsd:attribute name="kx" use="optional" type="a:ST_FixedAngle"/>
|
|
434
|
+
<xsd:attribute name="ky" use="optional" type="a:ST_FixedAngle"/>
|
|
435
|
+
<xsd:attribute name="algn" use="optional" type="ST_RectAlignment"/>
|
|
436
|
+
</xsd:complexType>
|
|
437
|
+
<xsd:complexType name="CT_FillTextEffect">
|
|
438
|
+
<xsd:sequence>
|
|
439
|
+
<xsd:group ref="EG_FillProperties" minOccurs="0"/>
|
|
440
|
+
</xsd:sequence>
|
|
441
|
+
</xsd:complexType>
|
|
442
|
+
<xsd:complexType name="CT_TextOutlineEffect">
|
|
443
|
+
<xsd:sequence>
|
|
444
|
+
<xsd:group ref="EG_FillProperties" minOccurs="0"/>
|
|
445
|
+
<xsd:group ref="EG_LineDashProperties" minOccurs="0"/>
|
|
446
|
+
<xsd:group ref="EG_LineJoinProperties" minOccurs="0"/>
|
|
447
|
+
</xsd:sequence>
|
|
448
|
+
<xsd:attribute name="w" use="optional" type="a:ST_LineWidth"/>
|
|
449
|
+
<xsd:attribute name="cap" use="optional" type="ST_LineCap"/>
|
|
450
|
+
<xsd:attribute name="cmpd" use="optional" type="ST_CompoundLine"/>
|
|
451
|
+
<xsd:attribute name="algn" use="optional" type="ST_PenAlignment"/>
|
|
452
|
+
</xsd:complexType>
|
|
453
|
+
<xsd:complexType name="CT_Scene3D">
|
|
454
|
+
<xsd:sequence>
|
|
455
|
+
<xsd:element name="camera" type="CT_Camera"/>
|
|
456
|
+
<xsd:element name="lightRig" type="CT_LightRig"/>
|
|
457
|
+
</xsd:sequence>
|
|
458
|
+
</xsd:complexType>
|
|
459
|
+
<xsd:complexType name="CT_Props3D">
|
|
460
|
+
<xsd:sequence>
|
|
461
|
+
<xsd:element name="bevelT" type="CT_Bevel" minOccurs="0"/>
|
|
462
|
+
<xsd:element name="bevelB" type="CT_Bevel" minOccurs="0"/>
|
|
463
|
+
<xsd:element name="extrusionClr" type="CT_Color" minOccurs="0"/>
|
|
464
|
+
<xsd:element name="contourClr" type="CT_Color" minOccurs="0"/>
|
|
465
|
+
</xsd:sequence>
|
|
466
|
+
<xsd:attribute name="extrusionH" type="a:ST_PositiveCoordinate" use="optional"/>
|
|
467
|
+
<xsd:attribute name="contourW" type="a:ST_PositiveCoordinate" use="optional"/>
|
|
468
|
+
<xsd:attribute name="prstMaterial" type="ST_PresetMaterialType" use="optional"/>
|
|
469
|
+
</xsd:complexType>
|
|
470
|
+
<xsd:group name="EG_RPrTextEffects">
|
|
471
|
+
<xsd:sequence>
|
|
472
|
+
<xsd:element name="glow" minOccurs="0" type="CT_Glow"/>
|
|
473
|
+
<xsd:element name="shadow" minOccurs="0" type="CT_Shadow"/>
|
|
474
|
+
<xsd:element name="reflection" minOccurs="0" type="CT_Reflection"/>
|
|
475
|
+
<xsd:element name="textOutline" minOccurs="0" type="CT_TextOutlineEffect"/>
|
|
476
|
+
<xsd:element name="textFill" minOccurs="0" type="CT_FillTextEffect"/>
|
|
477
|
+
<xsd:element name="scene3d" minOccurs="0" type="CT_Scene3D"/>
|
|
478
|
+
<xsd:element name="props3d" minOccurs="0" type="CT_Props3D"/>
|
|
479
|
+
</xsd:sequence>
|
|
480
|
+
</xsd:group>
|
|
481
|
+
<xsd:simpleType name="ST_Ligatures">
|
|
482
|
+
<xsd:restriction base="xsd:string">
|
|
483
|
+
<xsd:enumeration value="none"/>
|
|
484
|
+
<xsd:enumeration value="standard"/>
|
|
485
|
+
<xsd:enumeration value="contextual"/>
|
|
486
|
+
<xsd:enumeration value="historical"/>
|
|
487
|
+
<xsd:enumeration value="discretional"/>
|
|
488
|
+
<xsd:enumeration value="standardContextual"/>
|
|
489
|
+
<xsd:enumeration value="standardHistorical"/>
|
|
490
|
+
<xsd:enumeration value="contextualHistorical"/>
|
|
491
|
+
<xsd:enumeration value="standardDiscretional"/>
|
|
492
|
+
<xsd:enumeration value="contextualDiscretional"/>
|
|
493
|
+
<xsd:enumeration value="historicalDiscretional"/>
|
|
494
|
+
<xsd:enumeration value="standardContextualHistorical"/>
|
|
495
|
+
<xsd:enumeration value="standardContextualDiscretional"/>
|
|
496
|
+
<xsd:enumeration value="standardHistoricalDiscretional"/>
|
|
497
|
+
<xsd:enumeration value="contextualHistoricalDiscretional"/>
|
|
498
|
+
<xsd:enumeration value="all"/>
|
|
499
|
+
</xsd:restriction>
|
|
500
|
+
</xsd:simpleType>
|
|
501
|
+
<xsd:complexType name="CT_Ligatures">
|
|
502
|
+
<xsd:attribute name="val" type="ST_Ligatures" use="required"/>
|
|
503
|
+
</xsd:complexType>
|
|
504
|
+
<xsd:simpleType name="ST_NumForm">
|
|
505
|
+
<xsd:restriction base="xsd:string">
|
|
506
|
+
<xsd:enumeration value="default"/>
|
|
507
|
+
<xsd:enumeration value="lining"/>
|
|
508
|
+
<xsd:enumeration value="oldStyle"/>
|
|
509
|
+
</xsd:restriction>
|
|
510
|
+
</xsd:simpleType>
|
|
511
|
+
<xsd:complexType name="CT_NumForm">
|
|
512
|
+
<xsd:attribute name="val" type="ST_NumForm" use="required"/>
|
|
513
|
+
</xsd:complexType>
|
|
514
|
+
<xsd:simpleType name="ST_NumSpacing">
|
|
515
|
+
<xsd:restriction base="xsd:string">
|
|
516
|
+
<xsd:enumeration value="default"/>
|
|
517
|
+
<xsd:enumeration value="proportional"/>
|
|
518
|
+
<xsd:enumeration value="tabular"/>
|
|
519
|
+
</xsd:restriction>
|
|
520
|
+
</xsd:simpleType>
|
|
521
|
+
<xsd:complexType name="CT_NumSpacing">
|
|
522
|
+
<xsd:attribute name="val" type="ST_NumSpacing" use="required"/>
|
|
523
|
+
</xsd:complexType>
|
|
524
|
+
<xsd:complexType name="CT_StyleSet">
|
|
525
|
+
<xsd:attribute name="id" type="s:ST_UnsignedDecimalNumber" use="required"/>
|
|
526
|
+
<xsd:attribute name="val" type="ST_OnOff" use="optional"/>
|
|
527
|
+
</xsd:complexType>
|
|
528
|
+
<xsd:complexType name="CT_StylisticSets">
|
|
529
|
+
<xsd:sequence minOccurs="0">
|
|
530
|
+
<xsd:element name="styleSet" minOccurs="0" maxOccurs="unbounded" type="CT_StyleSet"/>
|
|
531
|
+
</xsd:sequence>
|
|
532
|
+
</xsd:complexType>
|
|
533
|
+
<xsd:group name="EG_RPrOpenType">
|
|
534
|
+
<xsd:sequence>
|
|
535
|
+
<xsd:element name="ligatures" minOccurs="0" type="CT_Ligatures"/>
|
|
536
|
+
<xsd:element name="numForm" minOccurs="0" type="CT_NumForm"/>
|
|
537
|
+
<xsd:element name="numSpacing" minOccurs="0" type="CT_NumSpacing"/>
|
|
538
|
+
<xsd:element name="stylisticSets" minOccurs="0" type="CT_StylisticSets"/>
|
|
539
|
+
<xsd:element name="cntxtAlts" minOccurs="0" type="CT_OnOff"/>
|
|
540
|
+
</xsd:sequence>
|
|
541
|
+
</xsd:group>
|
|
542
|
+
<xsd:element name="discardImageEditingData" type="CT_OnOff"/>
|
|
543
|
+
<xsd:element name="defaultImageDpi" type="CT_DefaultImageDpi"/>
|
|
544
|
+
<xsd:complexType name="CT_DefaultImageDpi">
|
|
545
|
+
<xsd:attribute name="val" type="w:ST_DecimalNumber" use="required"/>
|
|
546
|
+
</xsd:complexType>
|
|
547
|
+
<xsd:element name="entityPicker" type="w:CT_Empty"/>
|
|
548
|
+
<xsd:complexType name="CT_SdtCheckboxSymbol">
|
|
549
|
+
<xsd:attribute name="font" type="s:ST_String"/>
|
|
550
|
+
<xsd:attribute name="val" type="w:ST_ShortHexNumber"/>
|
|
551
|
+
</xsd:complexType>
|
|
552
|
+
<xsd:complexType name="CT_SdtCheckbox">
|
|
553
|
+
<xsd:sequence>
|
|
554
|
+
<xsd:element name="checked" type="CT_OnOff" minOccurs="0"/>
|
|
555
|
+
<xsd:element name="checkedState" type="CT_SdtCheckboxSymbol" minOccurs="0"/>
|
|
556
|
+
<xsd:element name="uncheckedState" type="CT_SdtCheckboxSymbol" minOccurs="0"/>
|
|
557
|
+
</xsd:sequence>
|
|
558
|
+
</xsd:complexType>
|
|
559
|
+
<xsd:element name="checkbox" type="CT_SdtCheckbox"/>
|
|
560
|
+
</xsd:schema>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2012/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2012/wordml">
|
|
2
|
+
<xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/>
|
|
3
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd"/>
|
|
4
|
+
<xsd:element name="color" type="w12:CT_Color"/>
|
|
5
|
+
<xsd:simpleType name="ST_SdtAppearance">
|
|
6
|
+
<xsd:restriction base="xsd:string">
|
|
7
|
+
<xsd:enumeration value="boundingBox"/>
|
|
8
|
+
<xsd:enumeration value="tags"/>
|
|
9
|
+
<xsd:enumeration value="hidden"/>
|
|
10
|
+
</xsd:restriction>
|
|
11
|
+
</xsd:simpleType>
|
|
12
|
+
<xsd:element name="dataBinding" type="w12:CT_DataBinding"/>
|
|
13
|
+
<xsd:complexType name="CT_SdtAppearance">
|
|
14
|
+
<xsd:attribute name="val" type="ST_SdtAppearance"/>
|
|
15
|
+
</xsd:complexType>
|
|
16
|
+
<xsd:element name="appearance" type="CT_SdtAppearance"/>
|
|
17
|
+
<xsd:complexType name="CT_CommentsEx">
|
|
18
|
+
<xsd:sequence>
|
|
19
|
+
<xsd:element name="commentEx" type="CT_CommentEx" minOccurs="0" maxOccurs="unbounded"/>
|
|
20
|
+
</xsd:sequence>
|
|
21
|
+
</xsd:complexType>
|
|
22
|
+
<xsd:complexType name="CT_CommentEx">
|
|
23
|
+
<xsd:attribute name="paraId" type="w12:ST_LongHexNumber" use="required"/>
|
|
24
|
+
<xsd:attribute name="paraIdParent" type="w12:ST_LongHexNumber" use="optional"/>
|
|
25
|
+
<xsd:attribute name="done" type="s:ST_OnOff" use="optional"/>
|
|
26
|
+
</xsd:complexType>
|
|
27
|
+
<xsd:element name="commentsEx" type="CT_CommentsEx"/>
|
|
28
|
+
<xsd:complexType name="CT_People">
|
|
29
|
+
<xsd:sequence>
|
|
30
|
+
<xsd:element name="person" type="CT_Person" minOccurs="0" maxOccurs="unbounded"/>
|
|
31
|
+
</xsd:sequence>
|
|
32
|
+
</xsd:complexType>
|
|
33
|
+
<xsd:complexType name="CT_PresenceInfo">
|
|
34
|
+
<xsd:attribute name="providerId" type="xsd:string" use="required"/>
|
|
35
|
+
<xsd:attribute name="userId" type="xsd:string" use="required"/>
|
|
36
|
+
</xsd:complexType>
|
|
37
|
+
<xsd:complexType name="CT_Person">
|
|
38
|
+
<xsd:sequence>
|
|
39
|
+
<xsd:element name="presenceInfo" type="CT_PresenceInfo" minOccurs="0" maxOccurs="1"/>
|
|
40
|
+
</xsd:sequence>
|
|
41
|
+
<xsd:attribute name="author" type="s:ST_String" use="required"/>
|
|
42
|
+
</xsd:complexType>
|
|
43
|
+
<xsd:element name="people" type="CT_People"/>
|
|
44
|
+
<xsd:complexType name="CT_SdtRepeatedSection">
|
|
45
|
+
<xsd:sequence>
|
|
46
|
+
<xsd:element name="sectionTitle" type="w12:CT_String" minOccurs="0"/>
|
|
47
|
+
<xsd:element name="doNotAllowInsertDeleteSection" type="w12:CT_OnOff" minOccurs="0"/>
|
|
48
|
+
</xsd:sequence>
|
|
49
|
+
</xsd:complexType>
|
|
50
|
+
<xsd:simpleType name="ST_Guid">
|
|
51
|
+
<xsd:restriction base="xsd:token">
|
|
52
|
+
<xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/>
|
|
53
|
+
</xsd:restriction>
|
|
54
|
+
</xsd:simpleType>
|
|
55
|
+
<xsd:complexType name="CT_Guid">
|
|
56
|
+
<xsd:attribute name="val" type="ST_Guid"/>
|
|
57
|
+
</xsd:complexType>
|
|
58
|
+
<xsd:element name="repeatingSection" type="CT_SdtRepeatedSection"/>
|
|
59
|
+
<xsd:element name="repeatingSectionItem" type="w12:CT_Empty"/>
|
|
60
|
+
<xsd:element name="chartTrackingRefBased" type="w12:CT_OnOff"/>
|
|
61
|
+
<xsd:element name="collapsed" type="w12:CT_OnOff"/>
|
|
62
|
+
<xsd:element name="docId" type="CT_Guid"/>
|
|
63
|
+
<xsd:element name="footnoteColumns" type="w12:CT_DecimalNumber"/>
|
|
64
|
+
<xsd:element name="webExtensionLinked" type="w12:CT_OnOff"/>
|
|
65
|
+
<xsd:element name="webExtensionCreated" type="w12:CT_OnOff"/>
|
|
66
|
+
<xsd:attribute name="restartNumberingAfterBreak" type="s:ST_OnOff"/>
|
|
67
|
+
</xsd:schema>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2018/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2018/wordml">
|
|
2
|
+
<xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/>
|
|
3
|
+
<xsd:complexType name="CT_Extension">
|
|
4
|
+
<xsd:sequence>
|
|
5
|
+
<xsd:any processContents="lax"/>
|
|
6
|
+
</xsd:sequence>
|
|
7
|
+
<xsd:attribute name="uri" type="xsd:token"/>
|
|
8
|
+
</xsd:complexType>
|
|
9
|
+
<xsd:complexType name="CT_ExtensionList">
|
|
10
|
+
<xsd:sequence>
|
|
11
|
+
<xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/>
|
|
12
|
+
</xsd:sequence>
|
|
13
|
+
</xsd:complexType>
|
|
14
|
+
</xsd:schema>
|