zilmate 1.9.3 β 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/ad-creative/SKILL.md +362 -0
- package/.agents/skills/ad-creative/evals/evals.json +90 -0
- package/.agents/skills/ad-creative/references/generative-tools.md +637 -0
- package/.agents/skills/ad-creative/references/platform-specs.md +213 -0
- package/.agents/skills/ai-seo/SKILL.md +489 -0
- package/.agents/skills/ai-seo/evals/evals.json +90 -0
- package/.agents/skills/ai-seo/references/content-patterns.md +285 -0
- package/.agents/skills/ai-seo/references/content-types.md +71 -0
- package/.agents/skills/ai-seo/references/okf.md +104 -0
- package/.agents/skills/ai-seo/references/platform-ranking-factors.md +154 -0
- package/.agents/skills/clerk-backend-api/SKILL.md +426 -0
- package/.agents/skills/clerk-backend-api/evals/evals.json +87 -0
- package/.agents/skills/clerk-backend-api/scripts/api-specs-context.sh +30 -0
- package/.agents/skills/clerk-backend-api/scripts/execute-request.sh +88 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-endpoint-detail.sh +165 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-tag-endpoints.sh +208 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-tags.js +14 -0
- package/.agents/skills/copy-editing/SKILL.md +457 -0
- package/.agents/skills/copy-editing/evals/evals.json +89 -0
- package/.agents/skills/copy-editing/references/checklist.md +66 -0
- package/.agents/skills/copy-editing/references/content-refresh.md +38 -0
- package/.agents/skills/copy-editing/references/plain-english-alternatives.md +394 -0
- package/.agents/skills/hyperframes/SKILL.md +163 -0
- package/.agents/skills/hyperframes-cli/SKILL.md +109 -0
- package/.agents/skills/hyperframes-cli/references/doctor-browser.md +45 -0
- package/.agents/skills/hyperframes-cli/references/init-and-scaffold.md +51 -0
- package/.agents/skills/hyperframes-cli/references/lambda.md +132 -0
- package/.agents/skills/hyperframes-cli/references/lint-validate-inspect.md +121 -0
- package/.agents/skills/hyperframes-cli/references/preview-render.md +109 -0
- package/.agents/skills/hyperframes-cli/references/upgrade-info-misc.md +75 -0
- package/.agents/skills/hyperframes-media/SKILL.md +97 -0
- package/.agents/skills/hyperframes-media/assets/sfx/CREDITS.md +35 -0
- package/.agents/skills/hyperframes-media/assets/sfx/manifest.json +97 -0
- package/.agents/skills/hyperframes-media/references/bgm.md +72 -0
- package/.agents/skills/hyperframes-media/references/captions/authoring.md +159 -0
- package/.agents/skills/hyperframes-media/references/captions/motion.md +87 -0
- package/.agents/skills/hyperframes-media/references/captions/transcript-handling.md +97 -0
- package/.agents/skills/hyperframes-media/references/remove-background.md +143 -0
- package/.agents/skills/hyperframes-media/references/requirements.md +29 -0
- package/.agents/skills/hyperframes-media/references/sfx.md +42 -0
- package/.agents/skills/hyperframes-media/references/transcribe.md +52 -0
- package/.agents/skills/hyperframes-media/references/tts-to-captions.md +24 -0
- package/.agents/skills/hyperframes-media/references/tts.md +135 -0
- package/.agents/skills/hyperframes-media/scripts/audio.mjs +282 -0
- package/.agents/skills/hyperframes-media/scripts/heygen-tts.mjs +121 -0
- package/.agents/skills/hyperframes-media/scripts/lib/bgm.mjs +235 -0
- package/.agents/skills/hyperframes-media/scripts/lib/heygen.mjs +131 -0
- package/.agents/skills/hyperframes-media/scripts/lib/sfx.mjs +128 -0
- package/.agents/skills/hyperframes-media/scripts/lib/tts.mjs +220 -0
- package/.agents/skills/hyperframes-media/scripts/lyria-recipe.py +128 -0
- package/.agents/skills/hyperframes-media/scripts/wait-bgm.mjs +167 -0
- package/.agents/skills/hyperframes-registry/SKILL.md +101 -0
- package/.agents/skills/hyperframes-registry/examples/add-block.md +51 -0
- package/.agents/skills/hyperframes-registry/examples/add-component.md +73 -0
- package/.agents/skills/hyperframes-registry/references/contributing.md +166 -0
- package/.agents/skills/hyperframes-registry/references/demo-html-pattern.md +54 -0
- package/.agents/skills/hyperframes-registry/references/discovery.md +215 -0
- package/.agents/skills/hyperframes-registry/references/install-locations.md +45 -0
- package/.agents/skills/hyperframes-registry/references/templates.md +417 -0
- package/.agents/skills/hyperframes-registry/references/wiring-blocks.md +61 -0
- package/.agents/skills/hyperframes-registry/references/wiring-components.md +39 -0
- package/.agents/skills/marketing-psychology/SKILL.md +455 -0
- package/.agents/skills/marketing-psychology/evals/evals.json +88 -0
- package/.agents/skills/mintlify/SKILL.md +328 -0
- package/.agents/skills/product-launch-video/SKILL.md +206 -0
- package/.agents/skills/product-launch-video/references/cut-catalog.md +220 -0
- package/.agents/skills/product-launch-video/references/motion-language.md +156 -0
- package/.agents/skills/product-launch-video/references/story-design.md +373 -0
- package/.agents/skills/product-launch-video/references/visual-design.md +126 -0
- package/.agents/skills/product-launch-video/scripts/assemble-index.mjs +570 -0
- package/.agents/skills/product-launch-video/scripts/audio.mjs +253 -0
- package/.agents/skills/product-launch-video/scripts/build-frame.mjs +536 -0
- package/.agents/skills/product-launch-video/scripts/captions.mjs +508 -0
- package/.agents/skills/product-launch-video/scripts/lib/assets.mjs +55 -0
- package/.agents/skills/product-launch-video/scripts/lib/dimensions.mjs +45 -0
- package/.agents/skills/product-launch-video/scripts/lib/storyboard.mjs +249 -0
- package/.agents/skills/product-launch-video/scripts/lib/tokens.mjs +204 -0
- package/.agents/skills/product-launch-video/scripts/lib/transition-registry.mjs +38 -0
- package/.agents/skills/product-launch-video/scripts/lib/transitions.json +71 -0
- package/.agents/skills/product-launch-video/scripts/stage-assets.mjs +39 -0
- package/.agents/skills/product-launch-video/scripts/transitions.mjs +320 -0
- package/.agents/skills/product-launch-video/sub-agents/frame-worker.md +74 -0
- package/.agents/skills/prompt-engineering-patterns/SKILL.md +144 -0
- package/.agents/skills/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
- package/.agents/skills/prompt-engineering-patterns/assets/prompt-template-library.md +264 -0
- package/.agents/skills/prompt-engineering-patterns/references/chain-of-thought.md +412 -0
- package/.agents/skills/prompt-engineering-patterns/references/details.md +338 -0
- package/.agents/skills/prompt-engineering-patterns/references/few-shot-learning.md +386 -0
- package/.agents/skills/prompt-engineering-patterns/references/prompt-optimization.md +428 -0
- package/.agents/skills/prompt-engineering-patterns/references/prompt-templates.md +484 -0
- package/.agents/skills/prompt-engineering-patterns/references/system-prompts.md +195 -0
- package/.agents/skills/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
- package/.agents/skills/remotion-to-hyperframes/SKILL.md +127 -0
- package/.agents/skills/remotion-to-hyperframes/assets/.gitkeep +0 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/run.sh +249 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/README.md +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/expected.json +26 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/hf-src/index.html +61 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/package.json +14 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/Root.tsx +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/TitleCard.tsx +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/README.md +54 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/expected.json +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/hf-src/index.html +118 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/package.json +14 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/MultiScene.tsx +105 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/Root.tsx +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/setup.sh +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/README.md +85 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/expected.json +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/hf-src/index.html +269 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/package.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Root.tsx +27 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Stargazed.tsx +37 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/AnimatedNumber.tsx +23 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/StatCard.tsx +59 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/UnderlinedText.tsx +47 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/OutroScene.tsx +18 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/StatsScene.tsx +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/TitleScene.tsx +55 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/README.md +51 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/01-use-state.tsx +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/02-use-effect-deps.tsx +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/03-async-metadata.tsx +39 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/04-third-party-react.tsx +30 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/05-lambda-config.tsx +38 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/06-warnings-only.tsx +36 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/07-custom-hook.tsx +28 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/08-mixed.tsx +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/expected.json +85 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/validate.sh +110 -0
- package/.agents/skills/remotion-to-hyperframes/references/api-map.md +142 -0
- package/.agents/skills/remotion-to-hyperframes/references/escape-hatch.md +115 -0
- package/.agents/skills/remotion-to-hyperframes/references/eval.md +140 -0
- package/.agents/skills/remotion-to-hyperframes/references/fonts.md +112 -0
- package/.agents/skills/remotion-to-hyperframes/references/limitations.md +136 -0
- package/.agents/skills/remotion-to-hyperframes/references/lottie.md +121 -0
- package/.agents/skills/remotion-to-hyperframes/references/media.md +149 -0
- package/.agents/skills/remotion-to-hyperframes/references/parameters.md +167 -0
- package/.agents/skills/remotion-to-hyperframes/references/sequencing.md +195 -0
- package/.agents/skills/remotion-to-hyperframes/references/timing.md +165 -0
- package/.agents/skills/remotion-to-hyperframes/references/transitions.md +114 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/.gitkeep +0 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/frame_strip.sh +107 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/lint_source.py +358 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/render_diff.sh +103 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/fixtures/blocker.tsx +50 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/fixtures/clean.tsx +46 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/smoke.sh +90 -0
- package/.agents/skills/seo-audit/SKILL.md +497 -0
- package/.agents/skills/seo-audit/evals/evals.json +136 -0
- package/.agents/skills/seo-audit/references/ai-writing-detection.md +200 -0
- package/.agents/skills/seo-audit/references/international-seo.md +230 -0
- package/README.md +4 -2
- package/SDK.md +64 -1
- package/dist/agents/coding.agent.d.ts +632 -0
- package/dist/agents/coding.agent.d.ts.map +1 -1
- package/dist/agents/coding.agent.js +11 -3
- package/dist/agents/coding.agent.js.map +1 -1
- package/dist/agents/developer-helper.agent.d.ts +704 -0
- package/dist/agents/developer-helper.agent.d.ts.map +1 -1
- package/dist/agents/developer-helper.agent.js +6 -0
- package/dist/agents/developer-helper.agent.js.map +1 -1
- package/dist/agents/manager.d.ts +1009 -4
- package/dist/agents/manager.d.ts.map +1 -1
- package/dist/agents/manager.js +16 -5
- package/dist/agents/manager.js.map +1 -1
- package/dist/agents/security.agent.d.ts +157 -3
- package/dist/agents/security.agent.d.ts.map +1 -1
- package/dist/agents/security.agent.js +3 -0
- package/dist/agents/security.agent.js.map +1 -1
- package/dist/agents/swarm/main.js +1 -1
- package/dist/agents/swarm/main.js.map +1 -1
- package/dist/agents/swarm/registry.d.ts.map +1 -1
- package/dist/agents/swarm/registry.js +232 -26
- package/dist/agents/swarm/registry.js.map +1 -1
- package/dist/cli/chat.d.ts +1 -1
- package/dist/cli/chat.d.ts.map +1 -1
- package/dist/cli/chat.js +32 -10
- package/dist/cli/chat.js.map +1 -1
- package/dist/cli/doctor.d.ts +14 -0
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +91 -0
- package/dist/cli/doctor.js.map +1 -1
- package/dist/cli/format.d.ts +1 -0
- package/dist/cli/format.d.ts.map +1 -1
- package/dist/cli/format.js +68 -14
- package/dist/cli/format.js.map +1 -1
- package/dist/cli/menu.d.ts.map +1 -1
- package/dist/cli/menu.js +102 -0
- package/dist/cli/menu.js.map +1 -1
- package/dist/cli/setup.d.ts +10 -0
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +187 -3
- package/dist/cli/setup.js.map +1 -1
- package/dist/cli/update.d.ts +2 -0
- package/dist/cli/update.d.ts.map +1 -1
- package/dist/cli/update.js +89 -1
- package/dist/cli/update.js.map +1 -1
- package/dist/config/env.d.ts +12 -0
- package/dist/config/env.d.ts.map +1 -1
- package/dist/config/env.js +19 -5
- package/dist/config/env.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +61 -5
- package/dist/index.js.map +1 -1
- package/dist/jobs/trigger-orchestrator.d.ts +5 -1
- package/dist/jobs/trigger-orchestrator.d.ts.map +1 -1
- package/dist/jobs/trigger-orchestrator.js +29 -9
- package/dist/jobs/trigger-orchestrator.js.map +1 -1
- package/dist/jobs/trigger-router.d.ts.map +1 -1
- package/dist/jobs/trigger-router.js +3 -2
- package/dist/jobs/trigger-router.js.map +1 -1
- package/dist/memory/corporate-wiki.d.ts +15 -0
- package/dist/memory/corporate-wiki.d.ts.map +1 -0
- package/dist/memory/corporate-wiki.js +152 -0
- package/dist/memory/corporate-wiki.js.map +1 -0
- package/dist/observability/doctor.d.ts.map +1 -1
- package/dist/observability/doctor.js +12 -4
- package/dist/observability/doctor.js.map +1 -1
- package/dist/pre-init.d.ts +2 -0
- package/dist/pre-init.d.ts.map +1 -0
- package/dist/pre-init.js +3 -0
- package/dist/pre-init.js.map +1 -0
- package/dist/runtime/chat-bridge.d.ts.map +1 -1
- package/dist/runtime/chat-bridge.js +33 -2
- package/dist/runtime/chat-bridge.js.map +1 -1
- package/dist/runtime/swarm.d.ts +0 -1
- package/dist/runtime/swarm.d.ts.map +1 -1
- package/dist/runtime/swarm.js +26 -15
- package/dist/runtime/swarm.js.map +1 -1
- package/dist/safety/approvals.d.ts +2 -2
- package/dist/safety/approvals.d.ts.map +1 -1
- package/dist/safety/approvals.js +47 -1
- package/dist/safety/approvals.js.map +1 -1
- package/dist/safety/redaction.d.ts.map +1 -1
- package/dist/safety/redaction.js +10 -0
- package/dist/safety/redaction.js.map +1 -1
- package/dist/server.d.ts +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +1 -0
- package/dist/server.js.map +1 -1
- package/dist/tools/cloud.tool.d.ts +394 -0
- package/dist/tools/cloud.tool.d.ts.map +1 -0
- package/dist/tools/cloud.tool.js +784 -0
- package/dist/tools/cloud.tool.js.map +1 -0
- package/dist/tools/computer-use.tool.d.ts +6 -6
- package/dist/tools/corporate-wiki.tool.d.ts +22 -0
- package/dist/tools/corporate-wiki.tool.d.ts.map +1 -0
- package/dist/tools/corporate-wiki.tool.js +39 -0
- package/dist/tools/corporate-wiki.tool.js.map +1 -0
- package/dist/tools/desktop.tool.d.ts +96 -0
- package/dist/tools/desktop.tool.d.ts.map +1 -1
- package/dist/tools/desktop.tool.js +439 -0
- package/dist/tools/desktop.tool.js.map +1 -1
- package/dist/tools/devops.tool.d.ts +162 -0
- package/dist/tools/devops.tool.d.ts.map +1 -0
- package/dist/tools/devops.tool.js +377 -0
- package/dist/tools/devops.tool.js.map +1 -0
- package/dist/tools/multimedia.tool.d.ts +126 -0
- package/dist/tools/multimedia.tool.d.ts.map +1 -0
- package/dist/tools/multimedia.tool.js +533 -0
- package/dist/tools/multimedia.tool.js.map +1 -0
- package/dist/tools/osint.tool.d.ts +6 -6
- package/dist/tools/sandbox-dev.tool.d.ts +15 -0
- package/dist/tools/sandbox-dev.tool.d.ts.map +1 -0
- package/dist/tools/sandbox-dev.tool.js +139 -0
- package/dist/tools/sandbox-dev.tool.js.map +1 -0
- package/dist/tools/setup-assistant.tool.d.ts +1 -1
- package/dist/tools/shell.tool.d.ts +82 -0
- package/dist/tools/shell.tool.d.ts.map +1 -1
- package/dist/tools/shell.tool.js +192 -1
- package/dist/tools/shell.tool.js.map +1 -1
- package/dist/tools/swarm-ops.tool.d.ts +14 -0
- package/dist/tools/swarm-ops.tool.d.ts.map +1 -1
- package/dist/tools/swarm-ops.tool.js +44 -0
- package/dist/tools/swarm-ops.tool.js.map +1 -1
- package/dist/tools/sysops.tool.d.ts +157 -0
- package/dist/tools/sysops.tool.d.ts.map +1 -0
- package/dist/tools/sysops.tool.js +643 -0
- package/dist/tools/sysops.tool.js.map +1 -0
- package/dist/voice/cascade.d.ts +1 -0
- package/dist/voice/cascade.d.ts.map +1 -1
- package/dist/voice/cascade.js +16 -1
- package/dist/voice/cascade.js.map +1 -1
- package/dist/voice/deepgram.d.ts.map +1 -1
- package/dist/voice/deepgram.js +34 -2
- package/dist/voice/deepgram.js.map +1 -1
- package/dist/voice/terminal.d.ts +1 -0
- package/dist/voice/terminal.d.ts.map +1 -1
- package/dist/voice/terminal.js +28 -0
- package/dist/voice/terminal.js.map +1 -1
- package/dist/voice/types.d.ts +2 -0
- package/dist/voice/types.d.ts.map +1 -1
- package/package.json +9 -1
- package/scripts/release-github.mjs +23 -18
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# AI Writing Detection
|
|
2
|
+
|
|
3
|
+
Words, phrases, and punctuation patterns commonly associated with AI-generated text. Avoid these to ensure writing sounds natural and human.
|
|
4
|
+
|
|
5
|
+
Sources: Grammarly (2025), Microsoft 365 Life Hacks (2025), GPTHuman (2025), Walter Writes (2025), Textero (2025), Plagiarism Today (2025), Rolling Stone (2025), MDPI Blog (2025)
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Contents
|
|
10
|
+
- Em Dashes: The Primary AI Tell
|
|
11
|
+
- Overused Verbs
|
|
12
|
+
- Overused Adjectives
|
|
13
|
+
- Overused Transitions and Connectors
|
|
14
|
+
- Phrases That Signal AI Writing (Opening Phrases, Transitional Phrases, Concluding Phrases, Structural Patterns)
|
|
15
|
+
- Filler Words and Empty Intensifiers
|
|
16
|
+
- Academic-Specific AI Tells
|
|
17
|
+
- How to Self-Check
|
|
18
|
+
|
|
19
|
+
## Em Dashes: The Primary AI Tell
|
|
20
|
+
|
|
21
|
+
**The em dash (β) has become one of the most reliable markers of AI-generated content.**
|
|
22
|
+
|
|
23
|
+
Em dashes are longer than hyphens (-) and are used for emphasis, interruptions, or parenthetical information. While they have legitimate uses in writing, AI models drastically overuse them.
|
|
24
|
+
|
|
25
|
+
### Why Em Dashes Signal AI Writing
|
|
26
|
+
- AI models were trained on edited books, academic papers, and style guides where em dashes appear frequently
|
|
27
|
+
- AI uses em dashes as a shortcut for sentence variety instead of commas, colons, or parentheses
|
|
28
|
+
- Most human writers rarely use em dashes because they don't exist as a standard keyboard key
|
|
29
|
+
- The overuse is so consistent that it has become the unofficial signature of ChatGPT writing
|
|
30
|
+
|
|
31
|
+
### What To Do Instead
|
|
32
|
+
| Instead of | Use |
|
|
33
|
+
|------------|-----|
|
|
34
|
+
| The resultsβwhich were surprisingβshowed... | The results, which were surprising, showed... |
|
|
35
|
+
| This approachβunlike traditional methodsβallows... | This approach, unlike traditional methods, allows... |
|
|
36
|
+
| The study foundβas expectedβthat... | The study found, as expected, that... |
|
|
37
|
+
| Communication skillsβboth written and verbalβare essential | Communication skills (both written and verbal) are essential |
|
|
38
|
+
|
|
39
|
+
### Guidelines
|
|
40
|
+
- Use commas for most parenthetical information
|
|
41
|
+
- Use colons to introduce explanations or lists
|
|
42
|
+
- Use parentheses for supplementary information
|
|
43
|
+
- Reserve em dashes for rare, deliberate emphasis only
|
|
44
|
+
- If you find yourself using more than one em dash per page, revise
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Overused Verbs
|
|
49
|
+
|
|
50
|
+
| Avoid | Use Instead |
|
|
51
|
+
|-------|-------------|
|
|
52
|
+
| delve (into) | explore, examine, investigate, look at |
|
|
53
|
+
| leverage | use, apply, draw on |
|
|
54
|
+
| optimise | improve, refine, enhance |
|
|
55
|
+
| utilise | use |
|
|
56
|
+
| facilitate | help, enable, support |
|
|
57
|
+
| foster | encourage, support, develop, nurture |
|
|
58
|
+
| bolster | strengthen, support, reinforce |
|
|
59
|
+
| underscore | emphasise, highlight, stress |
|
|
60
|
+
| unveil | reveal, show, introduce, present |
|
|
61
|
+
| navigate | manage, handle, work through |
|
|
62
|
+
| streamline | simplify, make more efficient |
|
|
63
|
+
| enhance | improve, strengthen |
|
|
64
|
+
| endeavour | try, attempt, effort |
|
|
65
|
+
| ascertain | find out, determine, establish |
|
|
66
|
+
| elucidate | explain, clarify, make clear |
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Overused Adjectives
|
|
71
|
+
|
|
72
|
+
| Avoid | Use Instead |
|
|
73
|
+
|-------|-------------|
|
|
74
|
+
| robust | strong, reliable, thorough, solid |
|
|
75
|
+
| comprehensive | complete, thorough, full, detailed |
|
|
76
|
+
| pivotal | key, critical, central, important |
|
|
77
|
+
| crucial | important, key, essential, critical |
|
|
78
|
+
| vital | important, essential, necessary |
|
|
79
|
+
| transformative | significant, important, major |
|
|
80
|
+
| cutting-edge | new, advanced, recent, modern |
|
|
81
|
+
| groundbreaking | new, original, significant |
|
|
82
|
+
| innovative | new, original, creative |
|
|
83
|
+
| seamless | smooth, easy, effortless |
|
|
84
|
+
| intricate | complex, detailed, complicated |
|
|
85
|
+
| nuanced | subtle, complex, detailed |
|
|
86
|
+
| multifaceted | complex, varied, diverse |
|
|
87
|
+
| holistic | complete, whole, comprehensive |
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Overused Transitions and Connectors
|
|
92
|
+
|
|
93
|
+
| Avoid | Use Instead |
|
|
94
|
+
|-------|-------------|
|
|
95
|
+
| furthermore | also, in addition, and |
|
|
96
|
+
| moreover | also, and, besides |
|
|
97
|
+
| notwithstanding | despite, even so, still |
|
|
98
|
+
| that being said | however, but, still |
|
|
99
|
+
| at its core | essentially, fundamentally, basically |
|
|
100
|
+
| to put it simply | in short, simply put |
|
|
101
|
+
| it is worth noting that | note that, importantly |
|
|
102
|
+
| in the realm of | in, within, regarding |
|
|
103
|
+
| in the landscape of | in, within |
|
|
104
|
+
| in today's [anything] | currently, now, today |
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Phrases That Signal AI Writing
|
|
109
|
+
|
|
110
|
+
### Opening Phrases to Avoid
|
|
111
|
+
- "In today's fast-paced world..."
|
|
112
|
+
- "In today's digital age..."
|
|
113
|
+
- "In an era of..."
|
|
114
|
+
- "In the ever-evolving landscape of..."
|
|
115
|
+
- "In the realm of..."
|
|
116
|
+
- "It's important to note that..."
|
|
117
|
+
- "Let's delve into..."
|
|
118
|
+
- "Imagine a world where..."
|
|
119
|
+
|
|
120
|
+
### Transitional Phrases to Avoid
|
|
121
|
+
- "That being said..."
|
|
122
|
+
- "With that in mind..."
|
|
123
|
+
- "It's worth mentioning that..."
|
|
124
|
+
- "At its core..."
|
|
125
|
+
- "To put it simply..."
|
|
126
|
+
- "In essence..."
|
|
127
|
+
- "This begs the question..."
|
|
128
|
+
|
|
129
|
+
### Concluding Phrases to Avoid
|
|
130
|
+
- "In conclusion..."
|
|
131
|
+
- "To sum up..."
|
|
132
|
+
- "By [doing X], you can [achieve Y]..."
|
|
133
|
+
- "In the final analysis..."
|
|
134
|
+
- "All things considered..."
|
|
135
|
+
- "At the end of the day..."
|
|
136
|
+
|
|
137
|
+
### Structural Patterns to Avoid
|
|
138
|
+
- "Whether you're a [X], [Y], or [Z]..." (listing three examples after "whether")
|
|
139
|
+
- "It's not just [X], it's also [Y]..."
|
|
140
|
+
- "Think of [X] as [elaborate metaphor]..."
|
|
141
|
+
- Starting sentences with "By" followed by a gerund: "By understanding X, you can Y..."
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Filler Words and Empty Intensifiers
|
|
146
|
+
|
|
147
|
+
These words often add nothing to meaning. Remove them or find specific alternatives:
|
|
148
|
+
|
|
149
|
+
- absolutely
|
|
150
|
+
- actually
|
|
151
|
+
- basically
|
|
152
|
+
- certainly
|
|
153
|
+
- clearly
|
|
154
|
+
- definitely
|
|
155
|
+
- essentially
|
|
156
|
+
- extremely
|
|
157
|
+
- fundamentally
|
|
158
|
+
- incredibly
|
|
159
|
+
- interestingly
|
|
160
|
+
- naturally
|
|
161
|
+
- obviously
|
|
162
|
+
- quite
|
|
163
|
+
- really
|
|
164
|
+
- significantly
|
|
165
|
+
- simply
|
|
166
|
+
- surely
|
|
167
|
+
- truly
|
|
168
|
+
- ultimately
|
|
169
|
+
- undoubtedly
|
|
170
|
+
- very
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## Academic-Specific AI Tells
|
|
175
|
+
|
|
176
|
+
| Avoid | Use Instead |
|
|
177
|
+
|-------|-------------|
|
|
178
|
+
| shed light on | clarify, explain, reveal |
|
|
179
|
+
| pave the way for | enable, allow, make possible |
|
|
180
|
+
| a myriad of | many, numerous, various |
|
|
181
|
+
| a plethora of | many, numerous, several |
|
|
182
|
+
| paramount | very important, essential, critical |
|
|
183
|
+
| pertaining to | about, regarding, concerning |
|
|
184
|
+
| prior to | before |
|
|
185
|
+
| subsequent to | after |
|
|
186
|
+
| in light of | because of, given, considering |
|
|
187
|
+
| with respect to | about, regarding, for |
|
|
188
|
+
| in terms of | regarding, for, about |
|
|
189
|
+
| the fact that | that (or rewrite sentence) |
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## How to Self-Check
|
|
194
|
+
|
|
195
|
+
1. Read your text aloud. If phrases sound unnatural in speech, revise them
|
|
196
|
+
2. Ask: "Would I say this in a conversation with a colleague?"
|
|
197
|
+
3. Check for repetitive sentence structures
|
|
198
|
+
4. Look for clusters of the words listed above
|
|
199
|
+
5. Ensure varied sentence lengths (not all similar length)
|
|
200
|
+
6. Verify each intensifier adds genuine meaning
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
# International SEO: Evidence & Sources
|
|
2
|
+
|
|
3
|
+
Detailed evidence backing the International SEO & Localization section of the SEO Audit skill. Organized by topic with source URLs and key quotes.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Hreflang
|
|
8
|
+
|
|
9
|
+
### Placement Methods
|
|
10
|
+
|
|
11
|
+
Google supports three equivalent methods: HTML `<link>` in `<head>`, HTTP `Link` headers, and XML sitemap `<xhtml:link>` elements. Google confirmed no method is prioritized over another.
|
|
12
|
+
|
|
13
|
+
Google combines signals from both HTML and sitemaps. If the same language-region pair points to different URLs across methods, Google drops that pair rather than guessing.
|
|
14
|
+
|
|
15
|
+
- [Google Search Central: Localized Versions](https://developers.google.com/search/docs/specialty/international/localized-versions)
|
|
16
|
+
- [SEJ: Google Combines Hreflang Signals](https://www.searchenginejournal.com/google-combines-hreflang-signals-from-html-sitemaps/389219/)
|
|
17
|
+
|
|
18
|
+
### Reciprocal Requirement
|
|
19
|
+
|
|
20
|
+
Google's docs: "If page X links to page Y, page Y must link back to page X. If not, those annotations may be ignored or not interpreted correctly."
|
|
21
|
+
|
|
22
|
+
Every page must include itself (self-referencing) in the hreflang set. Missing self-referencing is the #1 error found by Semrush audits. A study of 374,756 domains found 67% of hreflang implementations had issues.
|
|
23
|
+
|
|
24
|
+
- [Google Search Central: Localized Versions](https://developers.google.com/search/docs/specialty/international/localized-versions)
|
|
25
|
+
- [Semrush: 9 Common Hreflang Errors](https://www.semrush.com/blog/hreflang-errors/)
|
|
26
|
+
- [SE Land: 31% of International Websites Contain Hreflang Errors](https://searchengineland.com/study-31-of-international-websites-contain-hreflang-errors-395161)
|
|
27
|
+
|
|
28
|
+
### x-default
|
|
29
|
+
|
|
30
|
+
Introduced April 2013. Designates the fallback page for users whose language/region matches no declared variant. Can point to the same URL as one of the language-specific alternates. Must be included in the complete set of annotations on every variant page.
|
|
31
|
+
|
|
32
|
+
- [Google Blog: x-default hreflang](https://developers.google.com/search/blog/2013/04/x-default-hreflang-for-international-pages)
|
|
33
|
+
- [Google Blog: How x-default can help you (2023)](https://developers.google.com/search/blog/2023/05/x-default)
|
|
34
|
+
|
|
35
|
+
### Language & Region Codes
|
|
36
|
+
|
|
37
|
+
Language: ISO 639-1 (2-letter). Region: ISO 3166-1 Alpha 2 (2-letter). Format: `language[-script][-region]`.
|
|
38
|
+
|
|
39
|
+
You cannot specify a region code alone. Common mistakes: `en-UK` (should be `en-GB`), `es-419` (not ISO 3166-1). A study found 8.9% of sites using hreflang contain invalid language codes.
|
|
40
|
+
|
|
41
|
+
- [Google Search Central: Localized Versions](https://developers.google.com/search/docs/specialty/international/localized-versions)
|
|
42
|
+
- [SE Land: 31% Study](https://searchengineland.com/study-31-of-international-websites-contain-hreflang-errors-395161)
|
|
43
|
+
|
|
44
|
+
### Hreflang at Scale (20+ locales)
|
|
45
|
+
|
|
46
|
+
With 20 locales, HTML `<head>` hreflang adds ~1.5KB per page for zero user benefit. Sitemap-based hreflang has zero runtime performance impact. `<xhtml:link>` child elements do NOT count toward the 50,000 URL sitemap limit (only `<loc>` elements count).
|
|
47
|
+
|
|
48
|
+
John Mueller recommends focusing hreflang on pages receiving wrong-language traffic, not every page: "I wouldn't do it for any of the other pages of the site because it's so complex & hard to manage."
|
|
49
|
+
|
|
50
|
+
- [SERoundtable: Child Elements Don't Count](https://www.seroundtable.com/google-child-elements-dont-count-towards-sitemap-url-limit-34377.html)
|
|
51
|
+
- [SERoundtable: Where To Focus Hreflang](https://www.seroundtable.com/using-hreflang-34127.html)
|
|
52
|
+
- [Yoast: hreflang Ultimate Guide](https://yoast.com/hreflang-ultimate-guide/)
|
|
53
|
+
|
|
54
|
+
### Google vs Bing
|
|
55
|
+
|
|
56
|
+
Bing treats hreflang as a "weak signal." Bing relies on `content-language` meta tag, HTML `lang` attribute, ccTLDs, and server location. Yandex supports hreflang like Google.
|
|
57
|
+
|
|
58
|
+
For both engines: implement hreflang (Google/Yandex) + `<html lang="...">` + `<meta http-equiv="content-language">` (Bing).
|
|
59
|
+
|
|
60
|
+
- [Digital Ready Marketing: Bing Doesn't Use Hreflang](https://digitalreadymarketing.com/bing-doesnt-use-hreflang-annotation-what-does-it-use/)
|
|
61
|
+
- [Yoast: hreflang Ultimate Guide](https://yoast.com/hreflang-ultimate-guide/)
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Canonicalization & i18n
|
|
66
|
+
|
|
67
|
+
### Self-Referencing Canonicals
|
|
68
|
+
|
|
69
|
+
Each locale page must canonical to itself. John Mueller: "Don't use a rel=canonical across languages/countries, only use it on a per-country/language basis."
|
|
70
|
+
|
|
71
|
+
Google's docs: "Specify a canonical page in the same language, or the best possible substitute language if a canonical doesn't exist for the same language."
|
|
72
|
+
|
|
73
|
+
- [John Mueller: hreflang canonical](https://johnmu.com/hreflang-canonical/)
|
|
74
|
+
- [Google: Consolidate Duplicate URLs](https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls)
|
|
75
|
+
|
|
76
|
+
### Canonical Overrides Hreflang
|
|
77
|
+
|
|
78
|
+
Mueller: "If your canonical is pointing somewhere else, Google will follow that and ignore your hreflang annotation." The canonical URL must be one of the URLs in the hreflang set, or all hreflang markup is ignored.
|
|
79
|
+
|
|
80
|
+
Google also states: "Google prefers URLs that are part of hreflang clusters for canonicalization" -- when signals align, hreflang strengthens canonical selection.
|
|
81
|
+
|
|
82
|
+
- [John Mueller: hreflang canonical](https://johnmu.com/hreflang-canonical/)
|
|
83
|
+
- [SEJ: Hreflang Tags Are Hints](https://www.searchenginejournal.com/google-reminds-that-hreflang-tags-are-hints-not-directives/546428/)
|
|
84
|
+
- [Google: Consolidate Duplicate URLs](https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls)
|
|
85
|
+
|
|
86
|
+
### Near-Duplicate Regional Variants
|
|
87
|
+
|
|
88
|
+
Mueller (2023 Office Hours): "If the content is completely the same, and we can't tell any difference, then for simplicity and user experience we may just show one version -- even if hreflang is present."
|
|
89
|
+
|
|
90
|
+
Google's duplicate detection runs BEFORE hreflang evaluation. To keep both versions indexed, you need substantive content differences beyond currency symbols.
|
|
91
|
+
|
|
92
|
+
- [International Web Mastery: Same-Language Duplicate Pages](https://internationalwebmastery.com/blog/how-google-handles-canonicalization-of-same-language-duplicate-near-duplicate-pages/)
|
|
93
|
+
- [Google: Managing Multi-Regional Sites](https://developers.google.com/search/docs/specialty/international/managing-multi-regional-sites)
|
|
94
|
+
|
|
95
|
+
### Pagination Across Locales
|
|
96
|
+
|
|
97
|
+
Google: "Don't use the first page of a paginated sequence as the canonical page. Instead, give each page its own canonical URL." Each paginated page in each locale gets self-referencing canonical. `rel="next/prev"` deprecated March 2019.
|
|
98
|
+
|
|
99
|
+
- [Google: Pagination Best Practices](https://developers.google.com/search/docs/specialty/ecommerce/pagination-and-incremental-page-loading)
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## International Sitemaps
|
|
104
|
+
|
|
105
|
+
### Structure
|
|
106
|
+
|
|
107
|
+
Each `<url>` entry includes `<xhtml:link>` alternates for every locale. Requires `xmlns:xhtml="http://www.w3.org/1999/xhtml"` namespace.
|
|
108
|
+
|
|
109
|
+
Split sitemaps by content type, not by locale. Splitting by locale creates maintenance problems because every locale sitemap must reference every other locale (reciprocal requirement).
|
|
110
|
+
|
|
111
|
+
- [Google Search Central: Localized Versions](https://developers.google.com/search/docs/specialty/international/localized-versions)
|
|
112
|
+
- [Lumar: How Google Handles Hreflang](https://www.lumar.io/office-hours/hreflang/)
|
|
113
|
+
|
|
114
|
+
### Size Limits
|
|
115
|
+
|
|
116
|
+
50,000 URLs / 50MB uncompressed per sitemap. Only `<loc>` elements count toward the 50K limit. But with 20 hreflang alternates per entry, the 50MB file size limit becomes the bottleneck. Plan for 2,000-5,000 URLs per sitemap when using full hreflang.
|
|
117
|
+
|
|
118
|
+
- [Google: Build and Submit a Sitemap](https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap)
|
|
119
|
+
- [SERoundtable: Sitemap 50,000 Limit](https://www.seroundtable.com/google-sitemap-50-000-limit-based-on-location-urls-not-alternative-urls-33843.html)
|
|
120
|
+
|
|
121
|
+
### Submission
|
|
122
|
+
|
|
123
|
+
Submit the sitemap index in Search Console AND reference it in robots.txt. Individual child sitemaps can be submitted separately for per-sitemap reporting.
|
|
124
|
+
|
|
125
|
+
- [Google: Build and Submit a Sitemap](https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap)
|
|
126
|
+
|
|
127
|
+
### Next.js Caveat
|
|
128
|
+
|
|
129
|
+
Next.js `alternates.languages` does NOT automatically include a self-referencing `<xhtml:link>` for the `<loc>` URL. You must explicitly include the `<loc>` URL's own language in the `languages` object.
|
|
130
|
+
|
|
131
|
+
- [Next.js Docs: sitemap.xml](https://nextjs.org/docs/app/api-reference/file-conventions/metadata/sitemap)
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## URL Structure
|
|
136
|
+
|
|
137
|
+
### Strategies Compared
|
|
138
|
+
|
|
139
|
+
Google treats subdirectories and subdomains equivalently. Mueller: "From our point of view...they say subdomains and subdirectories are essentially equivalent."
|
|
140
|
+
|
|
141
|
+
URL parameters (`?lang=en`) are explicitly "Not recommended" per Google docs.
|
|
142
|
+
|
|
143
|
+
- [Google: Managing Multi-Regional Sites](https://developers.google.com/search/docs/specialty/international/managing-multi-regional-sites)
|
|
144
|
+
|
|
145
|
+
### Default Language
|
|
146
|
+
|
|
147
|
+
Mueller recommends: set `/` as x-default, put each language in its own prefix. Without marking `/` as x-default, "to Google it can look like '/' is a separate page from the others."
|
|
148
|
+
|
|
149
|
+
- [Google Blog: x-default](https://developers.google.com/search/blog/2023/05/x-default)
|
|
150
|
+
- [Google Blog: Creating the Right Homepage](https://developers.google.com/search/blog/2014/05/creating-right-homepage-for-your)
|
|
151
|
+
|
|
152
|
+
### Content Negotiation / IP Redirects
|
|
153
|
+
|
|
154
|
+
Google strongly advises against locale-adaptive pages. Googlebot crawls from US IPs and does not send Accept-Language headers. Separate URLs + hreflang are required.
|
|
155
|
+
|
|
156
|
+
- [Google: Locale-Adaptive Pages](https://developers.google.com/search/docs/specialty/international/locale-adaptive-pages)
|
|
157
|
+
|
|
158
|
+
### Trailing Slash Consistency
|
|
159
|
+
|
|
160
|
+
Mueller: trailing slash is "a significant part of the URL and will change the URL if it's there or not." Pick one format for all locale paths, internal links, canonicals, hreflang, and sitemaps.
|
|
161
|
+
|
|
162
|
+
Mueller (2025): "Consistency is the biggest technical SEO factor."
|
|
163
|
+
|
|
164
|
+
- [SERoundtable: Consistency Is The Biggest Technical SEO Factor](https://www.seroundtable.com/google-consistency-seo-40427.html)
|
|
165
|
+
|
|
166
|
+
### Search Console Geotargeting
|
|
167
|
+
|
|
168
|
+
The International Targeting report is deprecated. Google now relies entirely on hreflang, content language analysis, and linking patterns. You can add subdirectory properties for per-locale reporting.
|
|
169
|
+
|
|
170
|
+
- [Google Support: International Targeting Deprecated](https://support.google.com/webmasters/answer/12474899?hl=en)
|
|
171
|
+
|
|
172
|
+
### Framework Locale Modes
|
|
173
|
+
|
|
174
|
+
Use `localePrefix: 'always'` (next-intl) or equivalent. Never hide locale from URLs -- Google needs unique URLs per language. Using `'never'` mode disables alternate links entirely.
|
|
175
|
+
|
|
176
|
+
- [next-intl: Routing Configuration](https://next-intl.dev/docs/routing/configuration)
|
|
177
|
+
- [Next.js Discussion #18419](https://github.com/vercel/next.js/discussions/18419)
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Content Quality Across Locales
|
|
182
|
+
|
|
183
|
+
### Auto-Translated Content (2025 Stance)
|
|
184
|
+
|
|
185
|
+
Google removed longstanding guidance advising against auto-translated content in mid-2025. Current stance: "Our policies do not strictly define content that has been translated by AI as spam." The scaled content abuse policy mentions translation as a possible vector, but does not ban it.
|
|
186
|
+
|
|
187
|
+
Reddit scaled AI translations to 35+ languages with Google's knowledge. The key distinction is intent and quality, not the method.
|
|
188
|
+
|
|
189
|
+
- [Google Spam Policies](https://developers.google.com/search/docs/essentials/spam-policies)
|
|
190
|
+
- [Glenn Gabe: Auto-Translating Content](https://www.gsqi.com/marketing-blog/auto-translating-content-google-scaled-content-abuse/)
|
|
191
|
+
- [SE Land: Reddit AI Translations](https://searchengineland.com/google-comments-on-reddits-use-of-ai-to-translate-its-pages-456908)
|
|
192
|
+
|
|
193
|
+
### Thin Locale Pages
|
|
194
|
+
|
|
195
|
+
Google: "Localized versions of a page are only considered duplicates if the main content of the page remains untranslated." Pages with only translated boilerplate get clustered as duplicates.
|
|
196
|
+
|
|
197
|
+
Do NOT use noindex for unwanted locale pages (wastes crawl budget). Do NOT canonical cross-locale (conflicts with hreflang). Best approach: don't create locale pages you can't make genuinely helpful.
|
|
198
|
+
|
|
199
|
+
- [Google: Localized Versions](https://developers.google.com/search/docs/specialty/international/localized-versions)
|
|
200
|
+
- [Google: Crawl Budget Management](https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget)
|
|
201
|
+
|
|
202
|
+
### Helpful Content System Impact
|
|
203
|
+
|
|
204
|
+
Merged into core ranking March 2024. Site-wide signal: "any content -- not just unhelpful content -- on sites determined to have relatively high amounts of unhelpful content overall is less likely to perform well in Search."
|
|
205
|
+
|
|
206
|
+
Low-quality translated pages can drag down the entire site. This is the strongest argument against creating locale pages that aren't genuinely helpful.
|
|
207
|
+
|
|
208
|
+
- [Google Blog: Helpful Content Update](https://developers.google.com/search/blog/2022/08/helpful-content-update)
|
|
209
|
+
- [Amsive: What Changed in 2024](https://www.amsive.com/insights/seo/googles-helpful-content-update-ranking-system-what-happened-and-what-changed-in-2024/)
|
|
210
|
+
|
|
211
|
+
### Partial Translation
|
|
212
|
+
|
|
213
|
+
Google: "Translating only the boilerplate text of your pages while keeping the bulk of your content in a single language...can create a bad user experience." Google uses visible content (not lang attribute) to determine page language.
|
|
214
|
+
|
|
215
|
+
Translate ALL content on a page if you create a locale version. Untranslated metadata (title, description) in the wrong language reduces CTR.
|
|
216
|
+
|
|
217
|
+
- [Google: Managing Multi-Regional Sites](https://developers.google.com/search/docs/specialty/international/managing-multi-regional-sites)
|
|
218
|
+
|
|
219
|
+
### Crawl Budget
|
|
220
|
+
|
|
221
|
+
Only a concern for 1M+ pages or 10K+ pages changing daily. But alternate URLs (hreflang targets) do consume crawl budget. Broken hreflang links waste budget AND invalidate signals.
|
|
222
|
+
|
|
223
|
+
- [Google: Crawl Budget Management](https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget)
|
|
224
|
+
- [Google Blog: Crawl Budget](https://developers.google.com/search/blog/2017/01/what-crawl-budget-means-for-googlebot)
|
|
225
|
+
|
|
226
|
+
### Locale-Specific Signals
|
|
227
|
+
|
|
228
|
+
Google identifies audience via: "local addresses and phone numbers on the pages, the use of local language and currency, links from other local sites, or signals from your Business Profile."
|
|
229
|
+
|
|
230
|
+
- [Google: Managing Multi-Regional Sites](https://developers.google.com/search/docs/specialty/international/managing-multi-regional-sites)
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ The GitHub project can remain `zilo-manager`, but the installable npm package an
|
|
|
25
25
|
|
|
26
26
|
## π Key Features & Capabilities
|
|
27
27
|
|
|
28
|
-
- **Hierarchical Swarm Architecture** β Powered by a Manager Agent (CEO) that delegates to a Digital Corporation (COO), coordinating
|
|
28
|
+
- **Hierarchical Swarm Architecture** β Powered by a Manager Agent (CEO) that delegates to a Digital Corporation (COO), coordinating 30+ specialized subagents across 6 key business departments on a horizontal peer-to-peer messaging fabric. See the complete [SWARM.md](file:///c:/Users/mseyy/Downloads/zilo-manager/SWARM.md) blueprint.
|
|
29
29
|
- **Zero-Config Webhook Tunneling** β Automates background webhook listeners using **Upstash QStash**. Features a built-in automated **Cloudflare Tunnel** binary (`cloudflared`) downloader for platform-specific runtimes (`windows`, `macOS`, `linux`).
|
|
30
30
|
- **Interactive Safety Checklists** β Replaced basic text prompts with a premium interactive terminal UI (in TTY). Navigate via arrow keys and toggle checkboxes to filter and approve critical system and write-like app actions.
|
|
31
31
|
- **Bottom-Pinned Thinking Status Card** β High-feedback console loaders and elapsed timers remain perfectly pinned to the bottom of the console whileSpecialist logs scroll smoothly above them.
|
|
@@ -326,7 +326,9 @@ export async function POST(req: Request) {
|
|
|
326
326
|
|
|
327
327
|
## ποΈ Swarm Departmental Architecture
|
|
328
328
|
|
|
329
|
-
ZilMate organizes complex business pipelines by splitting responsibilities among
|
|
329
|
+
ZilMate organizes complex business pipelines by splitting responsibilities among 30+ specialists across 6 key departments. By deploying a horizontal active peer-to-peer messaging fabric, the swarm can coordinate actions and negotiate schemas directly. For a deep-dive into specialist instructions, toolkits, and communication protocols, see the comprehensive [SWARM.md](file:///c:/Users/mseyy/Downloads/zilo-manager/SWARM.md) document.
|
|
330
|
+
|
|
331
|
+
ZilMateβs core corporate structure is represented below:
|
|
330
332
|
|
|
331
333
|
```text
|
|
332
334
|
πΌ Supervisor Manager (CEO)
|
package/SDK.md
CHANGED
|
@@ -15,7 +15,22 @@ AI_GATEWAY_API_KEY=...
|
|
|
15
15
|
ZILMATE_USER_ID=zilmate-your-id
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
### Environment Variables Reference
|
|
19
|
+
|
|
20
|
+
| Variable | Description | Required / Optional |
|
|
21
|
+
|---|---|---|
|
|
22
|
+
| `AI_GATEWAY_API_KEY` | Model gateway authentication token. Required if not using Vercel OIDC. | Required |
|
|
23
|
+
| `ZILMATE_USER_ID` | Session/User identification for persistent tracking. | Required |
|
|
24
|
+
| `COMPOSIO_API_KEY` | Access key for system integrations and browser automation. | Optional |
|
|
25
|
+
| `TAVILY_API_KEY` | Enable advanced multi-source web-search research. | Optional |
|
|
26
|
+
| `DEEPGRAM_API_KEY` | Deepgram speech-to-text / real-time voice sessions API key. | Optional |
|
|
27
|
+
| `UPSTASH_REDIS_REST_URL` / `TOKEN` | Enables remote multi-instance Redis memory & scheduling. | Optional |
|
|
28
|
+
| `AWS_ACCESS_KEY_ID` / `SECRET` / `REGION` | AWS S3 credentials for high-performance cloud backups. | Optional |
|
|
29
|
+
| `GOOGLE_APPLICATION_CREDENTIALS` | Path to Google Cloud Service Account json for GCS tools. | Optional |
|
|
30
|
+
| `BLOB_READ_WRITE_TOKEN` | Vercel Blob read/write credentials. | Optional |
|
|
31
|
+
| `CORPORATE_WIKI_PROVIDER` | Set to `supermemory` or `upstash` (vector store engine fallback). | Optional |
|
|
32
|
+
| `SUPERMEMORY_API_KEY` | Integrates corporate wiki to your SuperMemory dashboard. | Optional |
|
|
33
|
+
| `UPSTASH_VECTOR_REST_URL` / `TOKEN` | Upstash Vector credentials for semantic blackboard wiki index. | Optional |
|
|
19
34
|
|
|
20
35
|
## Quick start (Node / Next.js server)
|
|
21
36
|
|
|
@@ -201,6 +216,52 @@ if (handoff) {
|
|
|
201
216
|
|
|
202
217
|
The manager can also call `generateSessionHandoff` / `saveSessionHandoff` before ending a long task.
|
|
203
218
|
|
|
219
|
+
### 3. Decentralized Swarm (Joint War Rooms)
|
|
220
|
+
|
|
221
|
+
ZilMate organizes 30+ specialized AI agents (such as `frontendArchitect`, `aiSeoStrategist`, `croSpecialist`) across 6 core corporate divisions. Rather than routing all sub-tasks through a central orchestrator, specialists coordinate horizontally:
|
|
222
|
+
|
|
223
|
+
- **Joint War Rooms (`collaborateWithPeer`)**: Specialists can directly instantiate peer specialists, pass context, and negotiate schemas, payloads, or creatives in-session.
|
|
224
|
+
|
|
225
|
+
```ts
|
|
226
|
+
const { text } = await zilmate.swarm({
|
|
227
|
+
role: 'frontendArchitect',
|
|
228
|
+
prompt: 'Collaborate with backendArchitect to define the lead payload contract.',
|
|
229
|
+
});
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### 4. Semantic Corporate Wiki (Shared Blackboard)
|
|
233
|
+
|
|
234
|
+
Every strategic design document, finalized deliverable, and API contract is indexed into a shared knowledge base, serving as a semantic blackboard:
|
|
235
|
+
|
|
236
|
+
- **Multi-Provider Backend**: Supports `supermemory`, `upstash` (Vector DB), or auto-falls back to a local keyword-search JSON database in the workspace.
|
|
237
|
+
- **Methods**: `queryCorporateWiki(query, limit)` / `publishToCorporateWiki(title, content, tags)`.
|
|
238
|
+
|
|
239
|
+
```ts
|
|
240
|
+
await zilmate.publishToWiki({
|
|
241
|
+
title: 'Lead Schema',
|
|
242
|
+
content: 'id: string, email: string, source: string',
|
|
243
|
+
tags: ['api', 'schema']
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
const results = await zilmate.queryWiki({ query: 'Lead Schema' });
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### 5. Autonomous Sandbox Dev Loops
|
|
250
|
+
|
|
251
|
+
The coding and QA specialists utilize a self-healing sandbox execution loop to run verification checks on local edits:
|
|
252
|
+
|
|
253
|
+
- Compiles local code and executes automated test suites (`npx playwright test` or custom runners).
|
|
254
|
+
- Captures compiler diagnostics and assertion stack traces, automatically self-repairing local patches iteratively in-place until the build is fully clean.
|
|
255
|
+
|
|
256
|
+
### 6. High-Performance Host Utility Tool Suites
|
|
257
|
+
|
|
258
|
+
The agent manager registers robust, secure, and fully sandboxed cross-platform utility suites to run system-level diagnostic and file operations directly:
|
|
259
|
+
|
|
260
|
+
- **βοΈ DevOps Suite**: Explores docker containers, fetches live logs, and manages service nodes (`listDockerContainers`, `getDockerContainerLogs`, `controlDockerContainer`). Safely checks configuration integrity (`validateEnv`).
|
|
261
|
+
- **π‘οΈ SysOps Suite**: Probes open ports, resolves pings, runs trace-routing hops, and securely inspects local SQLite schemas (`listOpenPorts`, `pingHost`, `traceRoute`, `getDatabaseSchema`).
|
|
262
|
+
- **βοΈ Multi-Cloud Storage**: Seamlessly uploads large payloads, dumps, and reports to AWS S3, GCS, or Vercel Blob using a tiered SDK client, CLI native commands, or custom instructions fallback.
|
|
263
|
+
- **π₯ Multimedia Processing**: Invokes local FFmpeg utilities to transcode videos, extract audio tracks, and run AI speech-to-text transcription fallback-layers (`transcodeVideo`, `extractAudio`, `speechToText`).
|
|
264
|
+
|
|
204
265
|
## Model selection
|
|
205
266
|
|
|
206
267
|
CLI users run `/model pick`. In code, persist selections to the workspace:
|
|
@@ -304,6 +365,8 @@ import {
|
|
|
304
365
|
| `zilmate heal` | manager + heal tools (via manager) |
|
|
305
366
|
| `zilmate jobs worker` | `runDueJobs()` + worker process |
|
|
306
367
|
| `/model pick` | `saveModelSelection()` |
|
|
368
|
+
| `zilmate doctor` | Runs diagnostics CLI locally |
|
|
369
|
+
| `zilmate setup` | Runs interactive setup CLI locally |
|
|
307
370
|
|
|
308
371
|
## Production checklist
|
|
309
372
|
|