ctxora 6.2.2 → 6.3.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-plugin/plugin.json +11 -0
- package/README.md +102 -16
- package/README.vi.md +93 -7
- package/THIRD_PARTY_NOTICES.md +12 -0
- package/agents/ctxora-context-engineer.md +6 -0
- package/agents/ctxora-maintainer.md +6 -0
- package/agents/ctxora-reviewer.md +6 -0
- package/bin/ctxora.mjs +1 -1
- package/commands/context.md +15 -0
- package/commands/guide.md +8 -0
- package/commands/handoff.md +8 -0
- package/commands/health.md +14 -0
- package/commands/learn.md +8 -0
- package/commands/plan.md +15 -0
- package/commands/review.md +8 -0
- package/commands/route.md +6 -0
- package/docs/COMMAND-SKILL-MAP.md +25 -0
- package/docs/third-party/ECC-LICENSE +21 -0
- package/package.json +14 -1
- package/pyproject.toml +6 -1
- package/schemas/README.md +3 -0
- package/schemas/mcp-v2/context_stats.request.schema.json +10 -0
- package/schemas/mcp-v2/context_stats.response.schema.json +5 -0
- package/schemas/mcp-v2/delete_conversation_handoff.request.schema.json +17 -0
- package/schemas/mcp-v2/delete_conversation_handoff.response.schema.json +5 -0
- package/schemas/mcp-v2/ecc_search.request.schema.json +16 -0
- package/schemas/mcp-v2/ecc_search.response.schema.json +5 -0
- package/schemas/mcp-v2/ecc_status.request.schema.json +6 -0
- package/schemas/mcp-v2/ecc_status.response.schema.json +5 -0
- package/schemas/mcp-v2/error.response.schema.json +40 -0
- package/schemas/mcp-v2/handoff_conversation.request.schema.json +29 -0
- package/schemas/mcp-v2/handoff_conversation.response.schema.json +5 -0
- package/schemas/mcp-v2/invalidate_context.request.schema.json +17 -0
- package/schemas/mcp-v2/invalidate_context.response.schema.json +5 -0
- package/schemas/mcp-v2/list_conversation_handoffs.request.schema.json +16 -0
- package/schemas/mcp-v2/list_conversation_handoffs.response.schema.json +8 -0
- package/schemas/mcp-v2/memory_delete.request.schema.json +20 -0
- package/schemas/mcp-v2/memory_delete.response.schema.json +5 -0
- package/schemas/mcp-v2/memory_list.request.schema.json +19 -0
- package/schemas/mcp-v2/memory_list.response.schema.json +7 -0
- package/schemas/mcp-v2/memory_save.request.schema.json +42 -0
- package/schemas/mcp-v2/memory_save.response.schema.json +5 -0
- package/schemas/mcp-v2/memory_search.request.schema.json +26 -0
- package/schemas/mcp-v2/memory_search.response.schema.json +8 -0
- package/schemas/mcp-v2/plan_context.request.schema.json +24 -0
- package/schemas/mcp-v2/plan_context.response.schema.json +5 -0
- package/schemas/mcp-v2/prepare_context.request.schema.json +42 -0
- package/schemas/mcp-v2/prepare_context.response.schema.json +72 -0
- package/schemas/mcp-v2/purge_expired_handoffs.request.schema.json +6 -0
- package/schemas/mcp-v2/purge_expired_handoffs.response.schema.json +5 -0
- package/schemas/mcp-v2/refresh_workspace.request.schema.json +19 -0
- package/schemas/mcp-v2/refresh_workspace.response.schema.json +5 -0
- package/schemas/mcp-v2/register_workspace.request.schema.json +23 -0
- package/schemas/mcp-v2/register_workspace.response.schema.json +5 -0
- package/schemas/mcp-v2/restore_conversation_handoff.request.schema.json +17 -0
- package/schemas/mcp-v2/restore_conversation_handoff.response.schema.json +5 -0
- package/schemas/mcp-v2/retrieve_context.request.schema.json +26 -0
- package/schemas/mcp-v2/retrieve_context.response.schema.json +5 -0
- package/schemas/mcp-v2/route_skills.request.schema.json +29 -0
- package/schemas/mcp-v2/route_skills.response.schema.json +5 -0
- package/schemas/mcp-v2/skill_feedback.request.schema.json +33 -0
- package/schemas/mcp-v2/skill_feedback.response.schema.json +5 -0
- package/schemas/mcp-v2/skill_learning_status.request.schema.json +16 -0
- package/schemas/mcp-v2/skill_learning_status.response.schema.json +5 -0
- package/skills/ctxora-context-health/SKILL.md +29 -0
- package/skills/ctxora-continuous-learning/SKILL.md +26 -0
- package/skills/ctxora-navigation/SKILL.md +20 -0
- package/skills/ctxora-repository-context/SKILL.md +33 -0
- package/skills/ctxora-setup/SKILL.md +26 -0
- package/skills/ctxora-workflow-profiles/SKILL.md +30 -0
- package/src/harness_context/api/v2/contracts.py +9 -0
- package/src/harness_context/application/container.py +2 -0
- package/src/harness_context/application/context_service.py +11 -2
- package/src/harness_context/application/protocols.py +5 -0
- package/src/harness_context/bootstrap.py +4 -1
- package/src/harness_context/cli/app.py +112 -0
- package/src/harness_context/mcp/capabilities.py +1 -0
- package/src/harness_context/mcp/tool_handlers/__init__.py +5 -1
- package/src/harness_context/mcp/tool_handlers/skills.py +29 -0
- package/src/harness_context/mcp/tools.py +2 -0
- package/src/harness_context/skills/__init__.py +4 -0
- package/src/harness_context/skills/catalog.py +245 -0
- package/src/harness_context/skills/ecc/accessibility/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/accessibility/SKILL.md +147 -0
- package/src/harness_context/skills/ecc/agent-architecture-audit/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-architecture-audit/SKILL.md +257 -0
- package/src/harness_context/skills/ecc/agent-eval/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-eval/SKILL.md +147 -0
- package/src/harness_context/skills/ecc/agent-harness-construction/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-harness-construction/SKILL.md +74 -0
- package/src/harness_context/skills/ecc/agent-introspection-debugging/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-introspection-debugging/SKILL.md +154 -0
- package/src/harness_context/skills/ecc/agent-payment-x402/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-payment-x402/SKILL.md +225 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/SKILL.md +182 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/examples/high-score-example.md +87 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/examples/low-score-example.md +86 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/references/evaluation-criteria.md +71 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/references/hook-integration.md +64 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/scripts/evaluate.py +408 -0
- package/src/harness_context/skills/ecc/agent-self-evaluation/templates/evaluation-report.md +86 -0
- package/src/harness_context/skills/ecc/agent-sort/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agent-sort/SKILL.md +216 -0
- package/src/harness_context/skills/ecc/agentic-engineering/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agentic-engineering/SKILL.md +64 -0
- package/src/harness_context/skills/ecc/agentic-os/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/agentic-os/SKILL.md +388 -0
- package/src/harness_context/skills/ecc/ai-first-engineering/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ai-first-engineering/SKILL.md +52 -0
- package/src/harness_context/skills/ecc/ai-regression-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ai-regression-testing/SKILL.md +386 -0
- package/src/harness_context/skills/ecc/android-clean-architecture/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/android-clean-architecture/SKILL.md +340 -0
- package/src/harness_context/skills/ecc/angular-developer/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/angular-developer/SKILL.md +155 -0
- package/src/harness_context/skills/ecc/angular-developer/references/angular-animations.md +160 -0
- package/src/harness_context/skills/ecc/angular-developer/references/angular-aria.md +410 -0
- package/src/harness_context/skills/ecc/angular-developer/references/cli.md +86 -0
- package/src/harness_context/skills/ecc/angular-developer/references/component-harnesses.md +59 -0
- package/src/harness_context/skills/ecc/angular-developer/references/component-styling.md +91 -0
- package/src/harness_context/skills/ecc/angular-developer/references/components.md +117 -0
- package/src/harness_context/skills/ecc/angular-developer/references/creating-services.md +97 -0
- package/src/harness_context/skills/ecc/angular-developer/references/data-resolvers.md +69 -0
- package/src/harness_context/skills/ecc/angular-developer/references/define-routes.md +67 -0
- package/src/harness_context/skills/ecc/angular-developer/references/defining-providers.md +72 -0
- package/src/harness_context/skills/ecc/angular-developer/references/di-fundamentals.md +120 -0
- package/src/harness_context/skills/ecc/angular-developer/references/e2e-testing.md +56 -0
- package/src/harness_context/skills/ecc/angular-developer/references/effects.md +83 -0
- package/src/harness_context/skills/ecc/angular-developer/references/hierarchical-injectors.md +43 -0
- package/src/harness_context/skills/ecc/angular-developer/references/host-elements.md +80 -0
- package/src/harness_context/skills/ecc/angular-developer/references/injection-context.md +63 -0
- package/src/harness_context/skills/ecc/angular-developer/references/inputs.md +101 -0
- package/src/harness_context/skills/ecc/angular-developer/references/linked-signal.md +59 -0
- package/src/harness_context/skills/ecc/angular-developer/references/loading-strategies.md +61 -0
- package/src/harness_context/skills/ecc/angular-developer/references/mcp.md +108 -0
- package/src/harness_context/skills/ecc/angular-developer/references/navigate-to-routes.md +69 -0
- package/src/harness_context/skills/ecc/angular-developer/references/outputs.md +86 -0
- package/src/harness_context/skills/ecc/angular-developer/references/reactive-forms.md +122 -0
- package/src/harness_context/skills/ecc/angular-developer/references/rendering-strategies.md +44 -0
- package/src/harness_context/skills/ecc/angular-developer/references/resource.md +77 -0
- package/src/harness_context/skills/ecc/angular-developer/references/route-animations.md +56 -0
- package/src/harness_context/skills/ecc/angular-developer/references/route-guards.md +52 -0
- package/src/harness_context/skills/ecc/angular-developer/references/router-lifecycle.md +45 -0
- package/src/harness_context/skills/ecc/angular-developer/references/router-testing.md +87 -0
- package/src/harness_context/skills/ecc/angular-developer/references/show-routes-with-outlets.md +68 -0
- package/src/harness_context/skills/ecc/angular-developer/references/signal-forms.md +795 -0
- package/src/harness_context/skills/ecc/angular-developer/references/signals-overview.md +94 -0
- package/src/harness_context/skills/ecc/angular-developer/references/tailwind-css.md +69 -0
- package/src/harness_context/skills/ecc/angular-developer/references/template-driven-forms.md +114 -0
- package/src/harness_context/skills/ecc/angular-developer/references/testing-fundamentals.md +65 -0
- package/src/harness_context/skills/ecc/api-connector-builder/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/api-connector-builder/SKILL.md +121 -0
- package/src/harness_context/skills/ecc/api-design/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/api-design/SKILL.md +524 -0
- package/src/harness_context/skills/ecc/architecture-decision-records/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/architecture-decision-records/SKILL.md +180 -0
- package/src/harness_context/skills/ecc/article-writing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/article-writing/SKILL.md +80 -0
- package/src/harness_context/skills/ecc/automation-audit-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/automation-audit-ops/SKILL.md +143 -0
- package/src/harness_context/skills/ecc/autonomous-agent-harness/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/autonomous-agent-harness/SKILL.md +274 -0
- package/src/harness_context/skills/ecc/autonomous-loops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/autonomous-loops/SKILL.md +611 -0
- package/src/harness_context/skills/ecc/backend-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/backend-patterns/SKILL.md +562 -0
- package/src/harness_context/skills/ecc/benchmark/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/benchmark/SKILL.md +95 -0
- package/src/harness_context/skills/ecc/benchmark-methodology/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/benchmark-methodology/SKILL.md +191 -0
- package/src/harness_context/skills/ecc/benchmark-optimization-loop/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/benchmark-optimization-loop/SKILL.md +71 -0
- package/src/harness_context/skills/ecc/blender-motion-state-inspection/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/blender-motion-state-inspection/SKILL.md +165 -0
- package/src/harness_context/skills/ecc/blueprint/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/blueprint/SKILL.md +106 -0
- package/src/harness_context/skills/ecc/brand-discovery/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/brand-discovery/SKILL.md +145 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/10_purpose-why.md +40 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/20_positioning.md +44 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/30_audience-niche.md +52 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/40_personality-archetype.md +57 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/50_voice-tone.md +59 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/60_narrative-story.md +50 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/70_founder-tension.md +49 -0
- package/src/harness_context/skills/ecc/brand-discovery/references/90_SYNTHESIS.md +133 -0
- package/src/harness_context/skills/ecc/brand-voice/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/brand-voice/SKILL.md +98 -0
- package/src/harness_context/skills/ecc/brand-voice/references/voice-profile-schema.md +55 -0
- package/src/harness_context/skills/ecc/browser-qa/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/browser-qa/SKILL.md +105 -0
- package/src/harness_context/skills/ecc/bun-runtime/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/bun-runtime/SKILL.md +85 -0
- package/src/harness_context/skills/ecc/canary-watch/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/canary-watch/SKILL.md +108 -0
- package/src/harness_context/skills/ecc/carrier-relationship-management/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/carrier-relationship-management/SKILL.md +212 -0
- package/src/harness_context/skills/ecc/cisco-ios-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/cisco-ios-patterns/SKILL.md +164 -0
- package/src/harness_context/skills/ecc/ck/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ck/SKILL.md +148 -0
- package/src/harness_context/skills/ecc/ck/commands/forget.mjs +44 -0
- package/src/harness_context/skills/ecc/ck/commands/info.mjs +24 -0
- package/src/harness_context/skills/ecc/ck/commands/init.mjs +143 -0
- package/src/harness_context/skills/ecc/ck/commands/list.mjs +40 -0
- package/src/harness_context/skills/ecc/ck/commands/migrate.mjs +202 -0
- package/src/harness_context/skills/ecc/ck/commands/resume.mjs +36 -0
- package/src/harness_context/skills/ecc/ck/commands/save.mjs +210 -0
- package/src/harness_context/skills/ecc/ck/commands/shared.mjs +387 -0
- package/src/harness_context/skills/ecc/ck/hooks/session-start.mjs +224 -0
- package/src/harness_context/skills/ecc/claude-devfleet/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/claude-devfleet/SKILL.md +112 -0
- package/src/harness_context/skills/ecc/click-path-audit/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/click-path-audit/SKILL.md +245 -0
- package/src/harness_context/skills/ecc/clickhouse-io/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/clickhouse-io/SKILL.md +445 -0
- package/src/harness_context/skills/ecc/code-tour/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/code-tour/SKILL.md +254 -0
- package/src/harness_context/skills/ecc/codebase-onboarding/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/codebase-onboarding/SKILL.md +234 -0
- package/src/harness_context/skills/ecc/codehealth-mcp/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/codehealth-mcp/SKILL.md +167 -0
- package/src/harness_context/skills/ecc/coding-standards/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/coding-standards/SKILL.md +551 -0
- package/src/harness_context/skills/ecc/competitive-platform-analysis/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/competitive-platform-analysis/SKILL.md +214 -0
- package/src/harness_context/skills/ecc/competitive-report-structure/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/competitive-report-structure/SKILL.md +162 -0
- package/src/harness_context/skills/ecc/compose-multiplatform-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/compose-multiplatform-patterns/SKILL.md +300 -0
- package/src/harness_context/skills/ecc/config-gc/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/config-gc/SKILL.md +120 -0
- package/src/harness_context/skills/ecc/configure-ecc/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/configure-ecc/SKILL.md +206 -0
- package/src/harness_context/skills/ecc/connections-optimizer/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/connections-optimizer/SKILL.md +190 -0
- package/src/harness_context/skills/ecc/content-engine/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/content-engine/SKILL.md +132 -0
- package/src/harness_context/skills/ecc/content-hash-cache-pattern/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/content-hash-cache-pattern/SKILL.md +162 -0
- package/src/harness_context/skills/ecc/context-budget/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/context-budget/SKILL.md +136 -0
- package/src/harness_context/skills/ecc/continuous-agent-loop/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/continuous-agent-loop/SKILL.md +46 -0
- package/src/harness_context/skills/ecc/continuous-learning/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/continuous-learning/SKILL.md +132 -0
- package/src/harness_context/skills/ecc/continuous-learning/config.json +18 -0
- package/src/harness_context/skills/ecc/continuous-learning/evaluate-session.sh +69 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/SKILL.md +377 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/agents/observer-loop.sh +372 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/agents/observer.md +189 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/agents/session-guardian.sh +150 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/agents/start-observer.sh +252 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/config.json +8 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/hooks/observe.sh +675 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/detect-project.sh +334 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/instinct-cli.py +2290 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/migrate-homunculus.sh +68 -0
- package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/test_parse_instinct.py +1420 -0
- package/src/harness_context/skills/ecc/contract-first/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/contract-first/SKILL.md +287 -0
- package/src/harness_context/skills/ecc/cost-aware-llm-pipeline/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/cost-aware-llm-pipeline/SKILL.md +188 -0
- package/src/harness_context/skills/ecc/cost-tracking/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/cost-tracking/SKILL.md +97 -0
- package/src/harness_context/skills/ecc/council/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/council/SKILL.md +204 -0
- package/src/harness_context/skills/ecc/council-multi-model/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/council-multi-model/SKILL.md +167 -0
- package/src/harness_context/skills/ecc/council-multi-model/scripts/review-with-codex.js +305 -0
- package/src/harness_context/skills/ecc/cpp-coding-standards/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/cpp-coding-standards/SKILL.md +724 -0
- package/src/harness_context/skills/ecc/cpp-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/cpp-testing/SKILL.md +325 -0
- package/src/harness_context/skills/ecc/crosspost/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/crosspost/SKILL.md +123 -0
- package/src/harness_context/skills/ecc/csharp-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/csharp-testing/SKILL.md +322 -0
- package/src/harness_context/skills/ecc/customer-billing-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/customer-billing-ops/SKILL.md +141 -0
- package/src/harness_context/skills/ecc/customs-trade-compliance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/customs-trade-compliance/SKILL.md +263 -0
- package/src/harness_context/skills/ecc/dart-flutter-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dart-flutter-patterns/SKILL.md +564 -0
- package/src/harness_context/skills/ecc/dashboard-builder/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dashboard-builder/SKILL.md +109 -0
- package/src/harness_context/skills/ecc/data-scraper-agent/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/data-scraper-agent/SKILL.md +776 -0
- package/src/harness_context/skills/ecc/data-throughput-accelerator/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/data-throughput-accelerator/SKILL.md +74 -0
- package/src/harness_context/skills/ecc/database-migrations/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/database-migrations/SKILL.md +430 -0
- package/src/harness_context/skills/ecc/deep-research/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/deep-research/SKILL.md +170 -0
- package/src/harness_context/skills/ecc/defi-amm-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/defi-amm-security/SKILL.md +167 -0
- package/src/harness_context/skills/ecc/delivery-gate/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/delivery-gate/SKILL.md +126 -0
- package/src/harness_context/skills/ecc/delivery-gate/hooks/quality-gate.py +220 -0
- package/src/harness_context/skills/ecc/deployment-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/deployment-patterns/SKILL.md +428 -0
- package/src/harness_context/skills/ecc/design-system/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/design-system/SKILL.md +83 -0
- package/src/harness_context/skills/ecc/dev-team/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dev-team/SKILL.md +203 -0
- package/src/harness_context/skills/ecc/django-celery/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/django-celery/SKILL.md +458 -0
- package/src/harness_context/skills/ecc/django-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/django-patterns/SKILL.md +735 -0
- package/src/harness_context/skills/ecc/django-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/django-security/SKILL.md +644 -0
- package/src/harness_context/skills/ecc/django-tdd/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/django-tdd/SKILL.md +730 -0
- package/src/harness_context/skills/ecc/django-verification/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/django-verification/SKILL.md +470 -0
- package/src/harness_context/skills/ecc/dmux-workflows/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dmux-workflows/SKILL.md +192 -0
- package/src/harness_context/skills/ecc/docker-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/docker-patterns/SKILL.md +520 -0
- package/src/harness_context/skills/ecc/documentation-lookup/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/documentation-lookup/SKILL.md +91 -0
- package/src/harness_context/skills/ecc/dotnet-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dotnet-patterns/SKILL.md +322 -0
- package/src/harness_context/skills/ecc/dynamic-workflow-mode/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/dynamic-workflow-mode/SKILL.md +124 -0
- package/src/harness_context/skills/ecc/e2e-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/e2e-testing/SKILL.md +327 -0
- package/src/harness_context/skills/ecc/ecc-guide/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ecc-guide/SKILL.md +190 -0
- package/src/harness_context/skills/ecc/ecc-recipes/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ecc-recipes/SKILL.md +150 -0
- package/src/harness_context/skills/ecc/ecc-tools-cost-audit/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ecc-tools-cost-audit/SKILL.md +161 -0
- package/src/harness_context/skills/ecc/email-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/email-ops/SKILL.md +133 -0
- package/src/harness_context/skills/ecc/energy-procurement/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/energy-procurement/SKILL.md +228 -0
- package/src/harness_context/skills/ecc/enterprise-agent-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/enterprise-agent-ops/SKILL.md +51 -0
- package/src/harness_context/skills/ecc/error-handling/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/error-handling/SKILL.md +377 -0
- package/src/harness_context/skills/ecc/eval-harness/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/eval-harness/SKILL.md +271 -0
- package/src/harness_context/skills/ecc/evm-token-decimals/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/evm-token-decimals/SKILL.md +131 -0
- package/src/harness_context/skills/ecc/exa-search/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/exa-search/SKILL.md +117 -0
- package/src/harness_context/skills/ecc/fal-ai-media/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/fal-ai-media/SKILL.md +289 -0
- package/src/harness_context/skills/ecc/fastapi-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/fastapi-patterns/SKILL.md +514 -0
- package/src/harness_context/skills/ecc/finance-billing-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/finance-billing-ops/SKILL.md +128 -0
- package/src/harness_context/skills/ecc/flox-environments/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/flox-environments/SKILL.md +497 -0
- package/src/harness_context/skills/ecc/flutter-dart-code-review/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/flutter-dart-code-review/SKILL.md +436 -0
- package/src/harness_context/skills/ecc/foundation-models-on-device/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/foundation-models-on-device/SKILL.md +243 -0
- package/src/harness_context/skills/ecc/frontend-a11y/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/frontend-a11y/SKILL.md +446 -0
- package/src/harness_context/skills/ecc/frontend-design-direction/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/frontend-design-direction/SKILL.md +93 -0
- package/src/harness_context/skills/ecc/frontend-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/frontend-patterns/SKILL.md +657 -0
- package/src/harness_context/skills/ecc/frontend-slides/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/frontend-slides/SKILL.md +185 -0
- package/src/harness_context/skills/ecc/frontend-slides/STYLE_PRESETS.md +330 -0
- package/src/harness_context/skills/ecc/frontend-slides/animation-patterns.md +122 -0
- package/src/harness_context/skills/ecc/frontend-slides/html-template.md +419 -0
- package/src/harness_context/skills/ecc/frontend-slides/scripts/export-pdf.sh +418 -0
- package/src/harness_context/skills/ecc/frontend-slides/scripts/extract-pptx.py +96 -0
- package/src/harness_context/skills/ecc/frontend-slides/viewport-base.css +153 -0
- package/src/harness_context/skills/ecc/fsharp-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/fsharp-testing/SKILL.md +281 -0
- package/src/harness_context/skills/ecc/gan-style-harness/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/gan-style-harness/SKILL.md +279 -0
- package/src/harness_context/skills/ecc/gateguard/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/gateguard/SKILL.md +182 -0
- package/src/harness_context/skills/ecc/generating-python-installer/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/generating-python-installer/SKILL.md +820 -0
- package/src/harness_context/skills/ecc/git-workflow/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/git-workflow/SKILL.md +716 -0
- package/src/harness_context/skills/ecc/github-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/github-ops/SKILL.md +162 -0
- package/src/harness_context/skills/ecc/github-ops/references/ecc-release-checklist.md +211 -0
- package/src/harness_context/skills/ecc/golang-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/golang-patterns/SKILL.md +676 -0
- package/src/harness_context/skills/ecc/golang-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/golang-testing/SKILL.md +721 -0
- package/src/harness_context/skills/ecc/google-workspace-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/google-workspace-ops/SKILL.md +96 -0
- package/src/harness_context/skills/ecc/growth-log/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/growth-log/SKILL.md +128 -0
- package/src/harness_context/skills/ecc/healthcare-cdss-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/healthcare-cdss-patterns/SKILL.md +246 -0
- package/src/harness_context/skills/ecc/healthcare-emr-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/healthcare-emr-patterns/SKILL.md +160 -0
- package/src/harness_context/skills/ecc/healthcare-eval-harness/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/healthcare-eval-harness/SKILL.md +208 -0
- package/src/harness_context/skills/ecc/healthcare-phi-compliance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/healthcare-phi-compliance/SKILL.md +146 -0
- package/src/harness_context/skills/ecc/hermes-imports/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/hermes-imports/SKILL.md +89 -0
- package/src/harness_context/skills/ecc/hexagonal-architecture/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/hexagonal-architecture/SKILL.md +277 -0
- package/src/harness_context/skills/ecc/hipaa-compliance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/hipaa-compliance/SKILL.md +79 -0
- package/src/harness_context/skills/ecc/homelab-network-readiness/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/homelab-network-readiness/SKILL.md +170 -0
- package/src/harness_context/skills/ecc/homelab-network-setup/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/homelab-network-setup/SKILL.md +130 -0
- package/src/harness_context/skills/ecc/homelab-pihole-dns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/homelab-pihole-dns/SKILL.md +275 -0
- package/src/harness_context/skills/ecc/homelab-vlan-segmentation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/homelab-vlan-segmentation/SKILL.md +312 -0
- package/src/harness_context/skills/ecc/homelab-wireguard-vpn/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/homelab-wireguard-vpn/SKILL.md +306 -0
- package/src/harness_context/skills/ecc/hookify-rules/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/hookify-rules/SKILL.md +128 -0
- package/src/harness_context/skills/ecc/inherit-legacy-style/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/inherit-legacy-style/SKILL.md +157 -0
- package/src/harness_context/skills/ecc/intent-driven-development/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/intent-driven-development/SKILL.md +360 -0
- package/src/harness_context/skills/ecc/inventory-demand-planning/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/inventory-demand-planning/SKILL.md +247 -0
- package/src/harness_context/skills/ecc/investor-materials/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/investor-materials/SKILL.md +97 -0
- package/src/harness_context/skills/ecc/investor-outreach/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/investor-outreach/SKILL.md +92 -0
- package/src/harness_context/skills/ecc/ios-icon-gen/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ios-icon-gen/SKILL.md +158 -0
- package/src/harness_context/skills/ecc/ios-icon-gen/scripts/generate_icons.swift +258 -0
- package/src/harness_context/skills/ecc/ios-icon-gen/scripts/iconify_gen.sh +235 -0
- package/src/harness_context/skills/ecc/iterative-retrieval/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/iterative-retrieval/SKILL.md +212 -0
- package/src/harness_context/skills/ecc/ito-baskets/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ito-baskets/SKILL.md +263 -0
- package/src/harness_context/skills/ecc/ito-baskets/agents/openai.yaml +4 -0
- package/src/harness_context/skills/ecc/ito-baskets/scripts/ito-baskets.js +195 -0
- package/src/harness_context/skills/ecc/ito-compute/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ito-compute/SKILL.md +165 -0
- package/src/harness_context/skills/ecc/ito-compute/agents/openai.yaml +4 -0
- package/src/harness_context/skills/ecc/ito-inference/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ito-inference/SKILL.md +119 -0
- package/src/harness_context/skills/ecc/ito-training/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ito-training/SKILL.md +123 -0
- package/src/harness_context/skills/ecc/java-coding-standards/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/java-coding-standards/SKILL.md +384 -0
- package/src/harness_context/skills/ecc/jira-integration/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/jira-integration/SKILL.md +312 -0
- package/src/harness_context/skills/ecc/jpa-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/jpa-patterns/SKILL.md +152 -0
- package/src/harness_context/skills/ecc/knowledge-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/knowledge-ops/SKILL.md +155 -0
- package/src/harness_context/skills/ecc/kotlin-coroutines-flows/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kotlin-coroutines-flows/SKILL.md +285 -0
- package/src/harness_context/skills/ecc/kotlin-exposed-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kotlin-exposed-patterns/SKILL.md +720 -0
- package/src/harness_context/skills/ecc/kotlin-ktor-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kotlin-ktor-patterns/SKILL.md +690 -0
- package/src/harness_context/skills/ecc/kotlin-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kotlin-patterns/SKILL.md +712 -0
- package/src/harness_context/skills/ecc/kotlin-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kotlin-testing/SKILL.md +825 -0
- package/src/harness_context/skills/ecc/kubernetes-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/kubernetes-patterns/SKILL.md +756 -0
- package/src/harness_context/skills/ecc/laravel-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/laravel-patterns/SKILL.md +416 -0
- package/src/harness_context/skills/ecc/laravel-plugin-discovery/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/laravel-plugin-discovery/SKILL.md +230 -0
- package/src/harness_context/skills/ecc/laravel-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/laravel-security/SKILL.md +948 -0
- package/src/harness_context/skills/ecc/laravel-tdd/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/laravel-tdd/SKILL.md +675 -0
- package/src/harness_context/skills/ecc/laravel-verification/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/laravel-verification/SKILL.md +180 -0
- package/src/harness_context/skills/ecc/latency-critical-systems/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/latency-critical-systems/SKILL.md +75 -0
- package/src/harness_context/skills/ecc/lead-intelligence/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/lead-intelligence/SKILL.md +333 -0
- package/src/harness_context/skills/ecc/lead-intelligence/agents/enrichment-agent.md +85 -0
- package/src/harness_context/skills/ecc/lead-intelligence/agents/mutual-mapper.md +75 -0
- package/src/harness_context/skills/ecc/lead-intelligence/agents/outreach-drafter.md +98 -0
- package/src/harness_context/skills/ecc/lead-intelligence/agents/signal-scorer.md +60 -0
- package/src/harness_context/skills/ecc/liquid-glass-design/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/liquid-glass-design/SKILL.md +279 -0
- package/src/harness_context/skills/ecc/living-docs-governance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/living-docs-governance/SKILL.md +137 -0
- package/src/harness_context/skills/ecc/llm-trading-agent-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/llm-trading-agent-security/SKILL.md +147 -0
- package/src/harness_context/skills/ecc/logistics-exception-management/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/logistics-exception-management/SKILL.md +222 -0
- package/src/harness_context/skills/ecc/loop-design-check/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/loop-design-check/SKILL.md +143 -0
- package/src/harness_context/skills/ecc/mailtrap-email-integration/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/mailtrap-email-integration/SKILL.md +77 -0
- package/src/harness_context/skills/ecc/make-interfaces-feel-better/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/make-interfaces-feel-better/SKILL.md +152 -0
- package/src/harness_context/skills/ecc/manim-video/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/manim-video/SKILL.md +90 -0
- package/src/harness_context/skills/ecc/manim-video/assets/network_graph_scene.py +52 -0
- package/src/harness_context/skills/ecc/market-research/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/market-research/SKILL.md +87 -0
- package/src/harness_context/skills/ecc/marketing-campaign/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/marketing-campaign/SKILL.md +114 -0
- package/src/harness_context/skills/ecc/mcp-server-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/mcp-server-patterns/SKILL.md +70 -0
- package/src/harness_context/skills/ecc/messages-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/messages-ops/SKILL.md +105 -0
- package/src/harness_context/skills/ecc/ml-adoption-playbook/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ml-adoption-playbook/SKILL.md +57 -0
- package/src/harness_context/skills/ecc/mle-workflow/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/mle-workflow/SKILL.md +348 -0
- package/src/harness_context/skills/ecc/motion-advanced/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/motion-advanced/SKILL.md +597 -0
- package/src/harness_context/skills/ecc/motion-foundations/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/motion-foundations/SKILL.md +300 -0
- package/src/harness_context/skills/ecc/motion-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/motion-patterns/SKILL.md +435 -0
- package/src/harness_context/skills/ecc/motion-ui/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/motion-ui/SKILL.md +576 -0
- package/src/harness_context/skills/ecc/mysql-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/mysql-patterns/SKILL.md +413 -0
- package/src/harness_context/skills/ecc/nanoclaw-repl/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nanoclaw-repl/SKILL.md +34 -0
- package/src/harness_context/skills/ecc/nasiko-control-plane/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nasiko-control-plane/SKILL.md +49 -0
- package/src/harness_context/skills/ecc/nasiko-control-plane/agents/openai.yaml +4 -0
- package/src/harness_context/skills/ecc/nestjs-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nestjs-patterns/SKILL.md +231 -0
- package/src/harness_context/skills/ecc/netmiko-ssh-automation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/netmiko-ssh-automation/SKILL.md +174 -0
- package/src/harness_context/skills/ecc/network-bgp-diagnostics/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/network-bgp-diagnostics/SKILL.md +168 -0
- package/src/harness_context/skills/ecc/network-config-validation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/network-config-validation/SKILL.md +211 -0
- package/src/harness_context/skills/ecc/network-interface-health/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/network-interface-health/SKILL.md +153 -0
- package/src/harness_context/skills/ecc/nextjs-turbopack/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nextjs-turbopack/SKILL.md +58 -0
- package/src/harness_context/skills/ecc/nodejs-keccak256/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nodejs-keccak256/SKILL.md +103 -0
- package/src/harness_context/skills/ecc/nutrient-document-processing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nutrient-document-processing/SKILL.md +168 -0
- package/src/harness_context/skills/ecc/nuxt4-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/nuxt4-patterns/SKILL.md +101 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/SKILL.md +289 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/gacha.py +224 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/gacha.sh +5 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/avatar-style.md +124 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/boundary-rules.md +53 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/error-handling.md +53 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/identity-tension.md +48 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/naming-system.md +39 -0
- package/src/harness_context/skills/ecc/openclaw-persona-forge/references/output-template.md +166 -0
- package/src/harness_context/skills/ecc/opensource-pipeline/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/opensource-pipeline/SKILL.md +256 -0
- package/src/harness_context/skills/ecc/orch-add-feature/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-add-feature/SKILL.md +45 -0
- package/src/harness_context/skills/ecc/orch-build-mvp/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-build-mvp/SKILL.md +49 -0
- package/src/harness_context/skills/ecc/orch-change-feature/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-change-feature/SKILL.md +43 -0
- package/src/harness_context/skills/ecc/orch-fix-defect/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-fix-defect/SKILL.md +43 -0
- package/src/harness_context/skills/ecc/orch-pipeline/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-pipeline/SKILL.md +121 -0
- package/src/harness_context/skills/ecc/orch-refine-code/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/orch-refine-code/SKILL.md +44 -0
- package/src/harness_context/skills/ecc/parallel-execution-optimizer/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/parallel-execution-optimizer/SKILL.md +74 -0
- package/src/harness_context/skills/ecc/perl-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/perl-patterns/SKILL.md +505 -0
- package/src/harness_context/skills/ecc/perl-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/perl-security/SKILL.md +504 -0
- package/src/harness_context/skills/ecc/perl-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/perl-testing/SKILL.md +476 -0
- package/src/harness_context/skills/ecc/plan-canvas/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/plan-canvas/SKILL.md +196 -0
- package/src/harness_context/skills/ecc/plan-orchestrate/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/plan-orchestrate/SKILL.md +263 -0
- package/src/harness_context/skills/ecc/plankton-code-quality/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/plankton-code-quality/SKILL.md +237 -0
- package/src/harness_context/skills/ecc/postgres-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/postgres-patterns/SKILL.md +148 -0
- package/src/harness_context/skills/ecc/prediction-market-oracle-research/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/prediction-market-oracle-research/SKILL.md +64 -0
- package/src/harness_context/skills/ecc/prediction-market-risk-review/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/prediction-market-risk-review/SKILL.md +61 -0
- package/src/harness_context/skills/ecc/prisma-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/prisma-patterns/SKILL.md +401 -0
- package/src/harness_context/skills/ecc/product-capability/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/product-capability/SKILL.md +142 -0
- package/src/harness_context/skills/ecc/product-lens/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/product-lens/SKILL.md +93 -0
- package/src/harness_context/skills/ecc/production-audit/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/production-audit/SKILL.md +207 -0
- package/src/harness_context/skills/ecc/production-scheduling/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/production-scheduling/SKILL.md +238 -0
- package/src/harness_context/skills/ecc/project-flow-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/project-flow-ops/SKILL.md +112 -0
- package/src/harness_context/skills/ecc/prompt-optimizer/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/prompt-optimizer/SKILL.md +398 -0
- package/src/harness_context/skills/ecc/python-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/python-patterns/SKILL.md +751 -0
- package/src/harness_context/skills/ecc/python-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/python-testing/SKILL.md +817 -0
- package/src/harness_context/skills/ecc/pytorch-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/pytorch-patterns/SKILL.md +397 -0
- package/src/harness_context/skills/ecc/quality-nonconformance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/quality-nonconformance/SKILL.md +260 -0
- package/src/harness_context/skills/ecc/quarkus-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/quarkus-patterns/SKILL.md +723 -0
- package/src/harness_context/skills/ecc/quarkus-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/quarkus-security/SKILL.md +468 -0
- package/src/harness_context/skills/ecc/quarkus-tdd/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/quarkus-tdd/SKILL.md +812 -0
- package/src/harness_context/skills/ecc/quarkus-verification/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/quarkus-verification/SKILL.md +481 -0
- package/src/harness_context/skills/ecc/ralphinho-rfc-pipeline/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ralphinho-rfc-pipeline/SKILL.md +68 -0
- package/src/harness_context/skills/ecc/react-native-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/react-native-patterns/SKILL.md +326 -0
- package/src/harness_context/skills/ecc/react-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/react-patterns/SKILL.md +342 -0
- package/src/harness_context/skills/ecc/react-performance/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/react-performance/SKILL.md +575 -0
- package/src/harness_context/skills/ecc/react-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/react-testing/SKILL.md +424 -0
- package/src/harness_context/skills/ecc/recsys-pipeline-architect/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/recsys-pipeline-architect/SKILL.md +115 -0
- package/src/harness_context/skills/ecc/recursive-decision-ledger/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/recursive-decision-ledger/SKILL.md +81 -0
- package/src/harness_context/skills/ecc/redis-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/redis-patterns/SKILL.md +404 -0
- package/src/harness_context/skills/ecc/regex-vs-llm-structured-text/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/regex-vs-llm-structured-text/SKILL.md +221 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/SKILL.md +43 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/3d.md +86 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/animations.md +29 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets.md +78 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/audio.md +172 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/calculate-metadata.md +104 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/can-decode.md +75 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/charts.md +58 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/compositions.md +146 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/display-captions.md +126 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/extract-frames.md +229 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/fonts.md +152 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-audio-duration.md +58 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-video-dimensions.md +68 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-video-duration.md +58 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/gifs.md +138 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/images.md +130 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/import-srt-captions.md +67 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/lottie.md +67 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/measuring-text.md +143 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/sequencing.md +106 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/tailwind.md +11 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/text-animations.md +20 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/timing.md +179 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/transcribe-captions.md +19 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/transitions.md +122 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/trimming.md +52 -0
- package/src/harness_context/skills/ecc/remotion-video-creation/rules/videos.md +171 -0
- package/src/harness_context/skills/ecc/repo-scan/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/repo-scan/SKILL.md +170 -0
- package/src/harness_context/skills/ecc/research-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/research-ops/SKILL.md +113 -0
- package/src/harness_context/skills/ecc/returns-reverse-logistics/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/returns-reverse-logistics/SKILL.md +240 -0
- package/src/harness_context/skills/ecc/rules-distill/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/rules-distill/SKILL.md +265 -0
- package/src/harness_context/skills/ecc/rules-distill/scripts/scan-rules.sh +58 -0
- package/src/harness_context/skills/ecc/rules-distill/scripts/scan-skills.sh +129 -0
- package/src/harness_context/skills/ecc/rust-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/rust-patterns/SKILL.md +500 -0
- package/src/harness_context/skills/ecc/rust-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/rust-testing/SKILL.md +501 -0
- package/src/harness_context/skills/ecc/safety-guard/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/safety-guard/SKILL.md +76 -0
- package/src/harness_context/skills/ecc/santa-method/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/santa-method/SKILL.md +307 -0
- package/src/harness_context/skills/ecc/scientific-db-pubmed-database/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/scientific-db-pubmed-database/SKILL.md +176 -0
- package/src/harness_context/skills/ecc/scientific-db-uspto-database/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/scientific-db-uspto-database/SKILL.md +178 -0
- package/src/harness_context/skills/ecc/scientific-pkg-gget/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/scientific-pkg-gget/SKILL.md +167 -0
- package/src/harness_context/skills/ecc/scientific-thinking-literature-review/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/scientific-thinking-literature-review/SKILL.md +193 -0
- package/src/harness_context/skills/ecc/scientific-thinking-scholar-evaluation/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/scientific-thinking-scholar-evaluation/SKILL.md +161 -0
- package/src/harness_context/skills/ecc/search-first/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/search-first/SKILL.md +183 -0
- package/src/harness_context/skills/ecc/security-bounty-hunter/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/security-bounty-hunter/SKILL.md +100 -0
- package/src/harness_context/skills/ecc/security-review/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/security-review/SKILL.md +504 -0
- package/src/harness_context/skills/ecc/security-review/cloud-infrastructure-security.md +361 -0
- package/src/harness_context/skills/ecc/security-scan/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/security-scan/SKILL.md +166 -0
- package/src/harness_context/skills/ecc/seo/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/seo/SKILL.md +155 -0
- package/src/harness_context/skills/ecc/skill-comply/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/skill-comply/SKILL.md +59 -0
- package/src/harness_context/skills/ecc/skill-comply/fixtures/compliant_trace.jsonl +5 -0
- package/src/harness_context/skills/ecc/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
- package/src/harness_context/skills/ecc/skill-comply/fixtures/tdd_spec.yaml +44 -0
- package/src/harness_context/skills/ecc/skill-comply/prompts/classifier.md +24 -0
- package/src/harness_context/skills/ecc/skill-comply/prompts/scenario_generator.md +62 -0
- package/src/harness_context/skills/ecc/skill-comply/prompts/spec_generator.md +42 -0
- package/src/harness_context/skills/ecc/skill-comply/pyproject.toml +16 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/__init__.py +0 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/classifier.py +85 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/grader.py +124 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/parser.py +107 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/report.py +170 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/run.py +127 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/runner.py +245 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/scenario_generator.py +70 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/spec_generator.py +72 -0
- package/src/harness_context/skills/ecc/skill-comply/scripts/utils.py +13 -0
- package/src/harness_context/skills/ecc/skill-comply/tests/test_grader.py +197 -0
- package/src/harness_context/skills/ecc/skill-comply/tests/test_parser.py +90 -0
- package/src/harness_context/skills/ecc/skill-comply/tests/test_runner.py +316 -0
- package/src/harness_context/skills/ecc/skill-scout/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/skill-scout/SKILL.md +141 -0
- package/src/harness_context/skills/ecc/skill-stocktake/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/skill-stocktake/SKILL.md +195 -0
- package/src/harness_context/skills/ecc/skill-stocktake/scripts/quick-diff.sh +118 -0
- package/src/harness_context/skills/ecc/skill-stocktake/scripts/save-results.sh +56 -0
- package/src/harness_context/skills/ecc/skill-stocktake/scripts/scan.sh +211 -0
- package/src/harness_context/skills/ecc/social-graph-ranker/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/social-graph-ranker/SKILL.md +155 -0
- package/src/harness_context/skills/ecc/social-publisher/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/social-publisher/SKILL.md +139 -0
- package/src/harness_context/skills/ecc/springboot-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/springboot-patterns/SKILL.md +315 -0
- package/src/harness_context/skills/ecc/springboot-security/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/springboot-security/SKILL.md +273 -0
- package/src/harness_context/skills/ecc/springboot-tdd/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/springboot-tdd/SKILL.md +159 -0
- package/src/harness_context/skills/ecc/springboot-verification/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/springboot-verification/SKILL.md +232 -0
- package/src/harness_context/skills/ecc/strategic-compact/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/strategic-compact/SKILL.md +156 -0
- package/src/harness_context/skills/ecc/swift-actor-persistence/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/swift-actor-persistence/SKILL.md +144 -0
- package/src/harness_context/skills/ecc/swift-concurrency-6-2/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/swift-concurrency-6-2/SKILL.md +216 -0
- package/src/harness_context/skills/ecc/swift-protocol-di-testing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/swift-protocol-di-testing/SKILL.md +191 -0
- package/src/harness_context/skills/ecc/swiftui-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/swiftui-patterns/SKILL.md +259 -0
- package/src/harness_context/skills/ecc/taste/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/taste/SKILL.md +264 -0
- package/src/harness_context/skills/ecc/taste/references/genre-taxonomy.md +87 -0
- package/src/harness_context/skills/ecc/tasteforge-video/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/tasteforge-video/SKILL.md +192 -0
- package/src/harness_context/skills/ecc/tdd-workflow/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/tdd-workflow/SKILL.md +583 -0
- package/src/harness_context/skills/ecc/team-agent-orchestration/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/team-agent-orchestration/SKILL.md +111 -0
- package/src/harness_context/skills/ecc/team-builder/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/team-builder/SKILL.md +169 -0
- package/src/harness_context/skills/ecc/terminal-opener/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/terminal-opener/SKILL.md +55 -0
- package/src/harness_context/skills/ecc/terminal-opener/agents/openai.yaml +4 -0
- package/src/harness_context/skills/ecc/terminal-opener/scripts/open-terminal.js +396 -0
- package/src/harness_context/skills/ecc/terminal-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/terminal-ops/SKILL.md +110 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/SKILL.md +279 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/architecture.md +90 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/data-handling.md +60 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/database.md +99 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/routing.md +64 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/system-usage.md +97 -0
- package/src/harness_context/skills/ecc/tinystruct-patterns/references/testing.md +72 -0
- package/src/harness_context/skills/ecc/token-budget-advisor/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/token-budget-advisor/SKILL.md +134 -0
- package/src/harness_context/skills/ecc/ui-demo/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ui-demo/SKILL.md +466 -0
- package/src/harness_context/skills/ecc/ui-to-vue/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/ui-to-vue/SKILL.md +135 -0
- package/src/harness_context/skills/ecc/uncloud/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/uncloud/SKILL.md +344 -0
- package/src/harness_context/skills/ecc/unified-memory/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/unified-memory/SKILL.md +170 -0
- package/src/harness_context/skills/ecc/unified-notifications-ops/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/unified-notifications-ops/SKILL.md +188 -0
- package/src/harness_context/skills/ecc/verification-loop/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/verification-loop/SKILL.md +129 -0
- package/src/harness_context/skills/ecc/video-editing/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/video-editing/SKILL.md +311 -0
- package/src/harness_context/skills/ecc/videodb/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/videodb/SKILL.md +375 -0
- package/src/harness_context/skills/ecc/videodb/reference/api-reference.md +550 -0
- package/src/harness_context/skills/ecc/videodb/reference/capture-reference.md +407 -0
- package/src/harness_context/skills/ecc/videodb/reference/capture.md +101 -0
- package/src/harness_context/skills/ecc/videodb/reference/editor.md +443 -0
- package/src/harness_context/skills/ecc/videodb/reference/generative.md +331 -0
- package/src/harness_context/skills/ecc/videodb/reference/rtstream-reference.md +564 -0
- package/src/harness_context/skills/ecc/videodb/reference/rtstream.md +65 -0
- package/src/harness_context/skills/ecc/videodb/reference/search.md +230 -0
- package/src/harness_context/skills/ecc/videodb/reference/streaming.md +406 -0
- package/src/harness_context/skills/ecc/videodb/reference/use-cases.md +118 -0
- package/src/harness_context/skills/ecc/videodb/scripts/ws_listener.py +282 -0
- package/src/harness_context/skills/ecc/visa-doc-translate/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/visa-doc-translate/README.md +86 -0
- package/src/harness_context/skills/ecc/visa-doc-translate/SKILL.md +117 -0
- package/src/harness_context/skills/ecc/vite-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/vite-patterns/SKILL.md +450 -0
- package/src/harness_context/skills/ecc/vue-patterns/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/vue-patterns/SKILL.md +471 -0
- package/src/harness_context/skills/ecc/windows-desktop-e2e/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/windows-desktop-e2e/SKILL.md +888 -0
- package/src/harness_context/skills/ecc/workspace-surface-audit/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/workspace-surface-audit/SKILL.md +126 -0
- package/src/harness_context/skills/ecc/x-api/LICENSE.ecc +21 -0
- package/src/harness_context/skills/ecc/x-api/SKILL.md +244 -0
- package/src/harness_context/skills/ecc_catalog.json +2233 -0
- package/src/harness_context/skills/router.py +394 -0
- package/src/harness_context/workspace/roots.py +1 -1
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: loop-design-check
|
|
3
|
+
description: "Design a goal-oriented agent loop, and review it for the ways loops go wrong — spinning and burning tokens, Goodhart-gaming the verifier, or running a wrong answer to completion. Two actions: (1) WRITE a loop — gate whether to build it, define a machine-decidable goal, pick the loop type, pick a skeleton; (2) REVIEW a loop — run it past five failure modes plus decidability, boundaries, fallback, judge independence, and keep-judgment-with-the-human red lines. Use when designing an autonomous agent loop, or when you already have one and worry it will spin, cheat, or run a wrong answer to the end. Complements the mechanism-layer loop skills (autonomous-loops, continuous-agent-loop) by covering the judgment layer they don't. 中文触发:写 loop、设计 loop、做一个 loop、检查 loop 对不对、loop 体检、loop 会不会跑飞、可判定目标、五个崩法、plan build judge。English triggers: design an agent loop, write a loop, check a loop, loop review, prevent a runaway loop, goal-oriented loop, decidable goal, plan/build/judge."
|
|
4
|
+
metadata:
|
|
5
|
+
origin: ECC
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Loop Design + Review
|
|
9
|
+
|
|
10
|
+
> **Premise.** An LLM is a feed-forward system: prompt in → tokens out, with no built-in "steer toward the goal" across turns. To make it *behave* like a goal-oriented system, you wrap a feedback loop around it. This skill helps you **write** that loop correctly and **review** it so it won't run away.
|
|
11
|
+
|
|
12
|
+
## When to use / not
|
|
13
|
+
|
|
14
|
+
**Use it when:**
|
|
15
|
+
- You want to hand a repeating task to an agent that runs over and over (write→test, test→fix, fix→verify…).
|
|
16
|
+
- You already have a loop and worry it spins, cheats, or runs a wrong answer to completion.
|
|
17
|
+
|
|
18
|
+
**Don't use it for:**
|
|
19
|
+
- A one-off task → just do it; don't wrap a loop around it.
|
|
20
|
+
- A plain timer / poll → use `/loop`; no design needed.
|
|
21
|
+
- *How to wire the loop architecture* (pipelines → DAGs, long-run recovery) → that's the mechanism layer; see `autonomous-loops` / `continuous-agent-loop`. **This skill only covers "is the goal right, and will it run away" — it does not re-explain mechanism.**
|
|
22
|
+
|
|
23
|
+
## Red-line premise: two levels of feedback
|
|
24
|
+
|
|
25
|
+
| Level | Who owns it | What it does |
|
|
26
|
+
|---|---|---|
|
|
27
|
+
| **Execution** (low) | machine / agent | Measures "how far from the literal goal" and grinds it to zero. The machine is strong here. |
|
|
28
|
+
| **Judgment** (high) | **human** | Decides "is this goal itself right, should it change, should it stop." The machine can't step outside its own loop to question the goal. |
|
|
29
|
+
|
|
30
|
+
> A thermostat can feed back "how far from 26°C," but when you have a fever and want 28°C it can't judge whether 26 is the *right* target — it just grinds toward 26. **"What to set today" is always the human's call.**
|
|
31
|
+
> Handing judgment / sign-off / the last switch to the machine = removing the high-level feedback = it sprints, fast and hard, toward a goal no one questioned → wrong output.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Action 1 — Write a loop (5 steps)
|
|
36
|
+
|
|
37
|
+
### Step 0 · Subtract first: should you even build it? (4-condition gate, any miss = veto)
|
|
38
|
+
|
|
39
|
+
① the task repeats weekly or more ② verification can be automated ③ the token budget can take it ④ the agent has tools that actually *run and see the result*
|
|
40
|
+
|
|
41
|
+
Miss any one → **don't build a loop**; do it by hand or another way.
|
|
42
|
+
> What stops most people isn't "can I write a loop," it's "does my repo deserve one." A repo that deserves a loop has a reconciliation baseline (golden sample / upstream total) + tests + a lint guard. **A repo that doesn't deserve a loop will only have its errors amplified by one.**
|
|
43
|
+
|
|
44
|
+
### Step 1 · Define a *machine-decidable* goal (the hard part — the loop lives or dies here)
|
|
45
|
+
|
|
46
|
+
The whole loop rides on the comparator's "is it done yet?" **The comparator can only work if your exit condition can be judged yes/no by a machine.**
|
|
47
|
+
|
|
48
|
+
- Bad: Vague ("make it good," "write it sharper") → the comparator can't judge → either it never passes (stuck retrying) or it guesses (passes/blocks at random).
|
|
49
|
+
- Good: Decidable ("all 96 unit tests green AND a change-list is produced," "module-02 fields filled, pytest passes, business logic untouched") → one check settles it; the loop converges cleanly.
|
|
50
|
+
|
|
51
|
+
**Five-point goal framework:**
|
|
52
|
+
1. **Done-criterion is machine-verifiable.**
|
|
53
|
+
2. **Boundary conditions defined alongside the done-criterion** ("what it must NOT do") — anti-Goodhart; missing boundaries = a license to cheat.
|
|
54
|
+
3. **Has a failure fallback** — retry cap N + escalate to a human when exceeded.
|
|
55
|
+
4. **Goal is layered.**
|
|
56
|
+
5. **Prefer reconciliation over assertion for the done-criterion** — anchor to external fact (golden sample / upstream total / financial tie-out / platform back-office numbers) before your own assertions. "All tests pass" can be gamed (loosen asserts, fake mocks, swallow exceptions); "diff vs the reference < 0.01" can't.
|
|
57
|
+
|
|
58
|
+
> **Self-check:** read the goal to someone who doesn't know the domain — can they run one command and tell whether it's done? If not, it isn't decidable enough. Go back.
|
|
59
|
+
|
|
60
|
+
### Step 2 · Pick the loop type
|
|
61
|
+
|
|
62
|
+
| Your task | Loop type (cybernetic) | How it stops |
|
|
63
|
+
|---|---|---|
|
|
64
|
+
| Has a clear "done" test (write to done / a batch of images processed) | **servo** (`/goal`-style closed-loop) | stops on reaching the goal |
|
|
65
|
+
| No endpoint, must keep maintaining a state (inventory alert / scheduled health check) | **regulator** (`/loop`-style thermostat) | never stops; acts only on change (dead-band suppresses noise) |
|
|
66
|
+
| Periodic sampling, stop on a condition (watch a PR until CI is green) | **regulator with an exit** | stops when the exit condition holds |
|
|
67
|
+
| Must "ensure something happens on time" | wrap the above in `/schedule` | cron fires it |
|
|
68
|
+
|
|
69
|
+
> Rule of thumb: clear "done" test → servo; must keep maintaining, no endpoint → regulator; must "happen on time" → wrap a regulator in schedule.
|
|
70
|
+
|
|
71
|
+
### Step 3 · Pick a skeleton
|
|
72
|
+
|
|
73
|
+
**Maintenance type (tend something that exists) → document-driven dispatch.**
|
|
74
|
+
The loop isn't "run a fixed check on a timer," it's **"read a doc on a timer, and dispatch only when the doc changed."** The doc is the task queue + state machine + human interface.
|
|
75
|
+
Three disciplines: ① the problem column is human-write-only, the result column is loop-write-only, **state advances one-way and never rolls back**; ② **the exit code is final** (if the script says exit 1, the script wins); ③ state advances only as far as "awaiting verification" — **the "done" cell is flipped by a human only.** The loop is the worker, not the acceptance officer.
|
|
76
|
+
|
|
77
|
+
**Greenfield type (build from scratch) → plan / build / judge, three roles.**
|
|
78
|
+
|
|
79
|
+
| Role | Does | Key |
|
|
80
|
+
|---|---|---|
|
|
81
|
+
| **Plan** | break the goal into a spec + **decidable acceptance conditions** | acceptance must be script-judgeable |
|
|
82
|
+
| **Build** | write to the spec | **must not change the acceptance conditions** |
|
|
83
|
+
| **Judge** | run acceptance **independently**; pass → stop, fail → return with the failure reason to Build | **independent + deterministic** |
|
|
84
|
+
|
|
85
|
+
Three iron rules (all bet on the judge): ① **the judge must be independent** — not the same agent as Build (grading your own homework always inflates); ② **deterministic rules** — pytest / reconciliation diff / type check / diff, never "looks right"; ③ **Build may not edit the acceptance conditions to pass**. Three failed retries → escalate to a human.
|
|
86
|
+
|
|
87
|
+
### Step 4 · Add damping (against oscillation / runaway)
|
|
88
|
+
|
|
89
|
+
Retry cap, hard stop, human flips the last switch = damping. **Negative feedback with no damping oscillates** (the Ralph-Wiggum loop: spinning in place, burning tokens).
|
|
90
|
+
|
|
91
|
+
### Step 5 · Land in three stages (don't go fully automatic on day one)
|
|
92
|
+
|
|
93
|
+
① **Run it once by hand** (forces you to state exactly "how the judge decides") → ② harden into a skill / Claude Code sub-agents (a main Claude loops, dispatching plan/build/judge) → ③ hang it on cron for full automation.
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## Action 2 — Review a loop (checklist = five failure modes)
|
|
98
|
+
|
|
99
|
+
> Run the loop past each row. **Hitting any one = this loop will misfire; send it back.** These five are negative experience (gotchas) — worth more than positive rules.
|
|
100
|
+
|
|
101
|
+
| # | Failure mode (how it breaks) | Review question (a hit = red) | Antibody |
|
|
102
|
+
|---|---|---|---|
|
|
103
|
+
| 1 | Goal is a correct platitude → **spins, burns money** | Can the exit condition be machine-judged yes/no? Or is it "manage it well / make it good"? | Replace with a decidable result condition (Action 1·Step 1) |
|
|
104
|
+
| 2 | "Verification" written as "check if it looks ok" → **agent confidently says fine and stops** | Is the judge the defendant itself? Does verification rest on "looks right" or deterministic rules? | Reconcile + exit code rules + independent judge |
|
|
105
|
+
| 3 | (worst) Only gates on "all tests pass" → **agent deletes the tests** | Is there a boundary ("what it must NOT do")? Or only a done-criterion? | Done-criterion **+ boundary** together (the Goodhart antibody) |
|
|
106
|
+
| 4 | Counts on the agent asking mid-run → **it won't; it runs the wrong answer to the end** | Is there any "clarify only at runtime" point? | **Front-load every clarification**; settle it once before launch |
|
|
107
|
+
| 5 | Bloated CLAUDE.md + stale memory → **the faster it loops, the more it errs** | Are the docs/memory it depends on fresh? Who maintains them? | Layered memory + periodic lint |
|
|
108
|
+
|
|
109
|
+
**Plus three red lines (violate any = not allowed to go automatic):**
|
|
110
|
+
- **Keep judgment with the human.** Acceptance / the "done" cell is flipped by a human; the loop is not the acceptance officer.
|
|
111
|
+
- **Responsibility doesn't transfer.** Anything whose failure you can't afford (merge the wrong PR / publish the wrong thing / misallocate money) → **don't hand over the authority automatically.**
|
|
112
|
+
- **Counter-intuitive warning.** The more "self-improving / rewrites-its-own-rules" a loop is, the **stricter the human review it needs** (to see what it rewrote the rules into) — not looser. The machine is too fast to intercept after the fact, so the human's judgment must sit **before the action** (a hard gate), not as a post-hoc patch.
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## Worked example — reviewing a "nightly green-keeper" loop
|
|
117
|
+
|
|
118
|
+
You want a loop that runs every night and fixes whatever tests are failing.
|
|
119
|
+
|
|
120
|
+
- **Naive goal:** "make all tests pass." → Step-1 self-check fails: this is the bait for failure mode #3.
|
|
121
|
+
- **Decidable goal (fixed):** "all tests green **AND** no test file deleted or weakened **AND** coverage not lowered **AND** a change-list produced." Boundary now defined alongside the done-criterion.
|
|
122
|
+
- **Type:** servo with a retry cap of 3 (Step 2 + Step 4).
|
|
123
|
+
- **Skeleton:** plan/build/judge — the **judge is CI run independently**, never the fixing agent (Step 3).
|
|
124
|
+
|
|
125
|
+
Now run the **review checklist**, and it catches what the naive version would have missed:
|
|
126
|
+
- **#3 hit** → the naive "all tests pass" lets the agent delete a failing test to "win." Fixed by the boundary "no test file deleted/weakened."
|
|
127
|
+
- **#2 hit** → if the fixing agent also judged its own fix, it would pass itself. Fixed by "judge = independent CI, deterministic."
|
|
128
|
+
- **#4 hit** → if a fix is ambiguous, the agent won't stop to ask at 2 a.m.; it'll commit a guess. Fixed by front-loading: ambiguous fixes are left for the human, not guessed.
|
|
129
|
+
- **Red line** → the loop opens a PR but **does not auto-merge**; the human flips the last switch (responsibility doesn't transfer).
|
|
130
|
+
|
|
131
|
+
The naive loop and the reviewed loop differ by four lines of constraint — and that's the difference between "wakes you to a deleted test suite" and "wakes you to a clean PR."
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## One-line close
|
|
136
|
+
|
|
137
|
+
> The hard part of writing a loop isn't "can I write a loop," it's **defining a goal a machine can reconcile** — decidable, bounded, reconciliation-based. The controller must be deterministic and external; keep judgment and the standard with the human; the system tends toward entropy, so maintain it.
|
|
138
|
+
> **A loop only rewards someone who has already thought it through. Count on it to think for you, and it will happily think wrong, with you, at scale.**
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
> Lineage: Wiener's two-level feedback (*The Human Use of Human Beings*, 1950) for the judgment/execution split and red lines; the plan/build/judge pattern from Anatoli's *Loops explained* and Addy's *Loop Engineering*.
|
|
143
|
+
> Mechanism layer (how to wire the loop architecture): see `autonomous-loops` / `continuous-agent-loop`. This skill does not re-implement mechanism; it covers goal definition and runaway prevention only.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Affaan Mustafa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mailtrap-email-integration
|
|
3
|
+
description: Guides agents through integrating transactional email sending via Mailtrap's Email API, including sandbox testing, domain verification, and API authentication. Use when implementing email-sending features, debugging delivery issues, or setting up safe dev/staging email testing.
|
|
4
|
+
origin: ECC
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Mailtrap Email Integration
|
|
8
|
+
|
|
9
|
+
Patterns for adding transactional email sending to an application using Mailtrap's Email API and Sandbox, covering authentication, environment separation, and common delivery pitfalls.
|
|
10
|
+
|
|
11
|
+
## When to Activate
|
|
12
|
+
|
|
13
|
+
- Implementing a "send email" feature (signup confirmation, password reset, notifications, receipts)
|
|
14
|
+
- Debugging why emails aren't arriving in dev/staging
|
|
15
|
+
- Setting up a project's first email-sending integration
|
|
16
|
+
- Reviewing code that calls an email API directly without sandbox separation
|
|
17
|
+
|
|
18
|
+
## Core Concepts
|
|
19
|
+
|
|
20
|
+
**Sandbox vs. Production separation.** Mailtrap provides a Sandbox API that captures emails without delivering them, used for dev/staging so test emails never reach real inboxes. Production sending uses a separate, verified-domain endpoint. Never point a dev environment at the production sending endpoint.
|
|
21
|
+
|
|
22
|
+
**Authentication.** Requests use a Bearer token in the `Authorization` header. Tokens are scoped per project; sandbox and production typically use different tokens.
|
|
23
|
+
|
|
24
|
+
**Domain verification.** Production sending requires verifying a sending domain via DNS records (SPF, DKIM, DMARC) before Mailtrap will deliver to real recipients. Skipping this causes silent delivery failures or spam-folder placement.
|
|
25
|
+
|
|
26
|
+
## Code Examples
|
|
27
|
+
|
|
28
|
+
```typescript
|
|
29
|
+
// Sending via Mailtrap's Email API (production)
|
|
30
|
+
async function sendEmail(to: string, subject: string, html: string) {
|
|
31
|
+
const response = await fetch("https://send.api.mailtrap.io/api/send", {
|
|
32
|
+
method: "POST",
|
|
33
|
+
headers: {
|
|
34
|
+
"Authorization": `Bearer ${process.env.MAILTRAP_API_TOKEN}`,
|
|
35
|
+
"Content-Type": "application/json",
|
|
36
|
+
},
|
|
37
|
+
body: JSON.stringify({
|
|
38
|
+
from: { email: "no-reply@yourverifieddomain.com", name: "Your App" },
|
|
39
|
+
to: [{ email: to }],
|
|
40
|
+
subject,
|
|
41
|
+
html,
|
|
42
|
+
}),
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
if (!response.ok) {
|
|
46
|
+
throw new Error(`Email send failed: ${response.status}`);
|
|
47
|
+
}
|
|
48
|
+
return response.json();
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
```typescript
|
|
53
|
+
// Same call, routed to Sandbox in non-production environments
|
|
54
|
+
const MAILTRAP_ENDPOINT = process.env.NODE_ENV === "production"
|
|
55
|
+
? "https://send.api.mailtrap.io/api/send"
|
|
56
|
+
: `https://sandbox.api.mailtrap.io/api/send/${process.env.MAILTRAP_INBOX_ID}`;
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Anti-Patterns
|
|
60
|
+
|
|
61
|
+
| Anti-Pattern | Why It's a Problem | Instead |
|
|
62
|
+
| --- | --- | --- |
|
|
63
|
+
| Using the production sending endpoint in dev/test | Real test emails reach real inboxes, risking spam complaints and leaked test data | Route non-production environments to the Sandbox endpoint |
|
|
64
|
+
| Hardcoding API tokens in source | Credential leak risk if committed to version control | Load tokens from environment variables / secrets manager |
|
|
65
|
+
| Sending before domain verification completes | Emails silently fail or land in spam | Verify SPF/DKIM/DMARC records before enabling production sending |
|
|
66
|
+
| No retry/error handling on send failures | Silent notification failures (e.g., user never gets password reset email) | Check response status, log failures, surface actionable errors |
|
|
67
|
+
|
|
68
|
+
## Best Practices
|
|
69
|
+
|
|
70
|
+
- Keep sandbox and production tokens in separate environment variables, never share one token across environments
|
|
71
|
+
- Verify sending domain DNS records before any production launch involving email
|
|
72
|
+
- Log delivery failures with enough context to debug (recipient, template, timestamp, response code)
|
|
73
|
+
- Treat email sending as a fallible network call: wrap in try/catch, never assume success
|
|
74
|
+
|
|
75
|
+
## Related Skills
|
|
76
|
+
|
|
77
|
+
`api-and-interface-design`, `security-and-hardening`, `ci-cd-and-automation`
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Affaan Mustafa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: make-interfaces-feel-better
|
|
3
|
+
description: Apply concrete design-engineering details that make interfaces feel polished. Use when reviewing or improving UI spacing, typography, borders, shadows, motion, hit areas, icons, text wrapping, and interaction states.
|
|
4
|
+
metadata:
|
|
5
|
+
origin: community
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Make Interfaces Feel Better
|
|
9
|
+
|
|
10
|
+
Use this skill for the small design-engineering details that compound into a
|
|
11
|
+
more polished interface.
|
|
12
|
+
|
|
13
|
+
Source: salvaged from stale community PR #1659 by `linus707`.
|
|
14
|
+
|
|
15
|
+
## When to Use
|
|
16
|
+
|
|
17
|
+
- The user says the UI feels off, flat, generic, cramped, jumpy, or unfinished.
|
|
18
|
+
- You are building controls, cards, lists, dashboards, navigation, forms, or
|
|
19
|
+
toolbars.
|
|
20
|
+
- A component needs hover, active, focus, enter, exit, loading, or empty states.
|
|
21
|
+
- A frontend review needs specific before/after recommendations.
|
|
22
|
+
|
|
23
|
+
## Core Principles
|
|
24
|
+
|
|
25
|
+
### Concentric Radius
|
|
26
|
+
|
|
27
|
+
For nearby nested rounded surfaces:
|
|
28
|
+
|
|
29
|
+
```text
|
|
30
|
+
outer radius = inner radius + padding
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
If padding is large, treat layers as separate surfaces instead of forcing the
|
|
34
|
+
math. The point is optical coherence, not formula worship.
|
|
35
|
+
|
|
36
|
+
### Optical Alignment
|
|
37
|
+
|
|
38
|
+
Geometric centering is not always visual centering. Icon buttons, play
|
|
39
|
+
triangles, arrows, stars, and asymmetric icons often need a small offset. Fix the
|
|
40
|
+
SVG when possible; otherwise adjust with a pixel-level margin or padding change.
|
|
41
|
+
|
|
42
|
+
### Shadows And Borders
|
|
43
|
+
|
|
44
|
+
Use borders for separation and focus rings. Use layered shadows when a card,
|
|
45
|
+
button, dropdown, or popover needs depth. Shadows should be transparent and
|
|
46
|
+
subtle enough to work across backgrounds.
|
|
47
|
+
|
|
48
|
+
### Text Wrapping
|
|
49
|
+
|
|
50
|
+
- Use `text-wrap: balance` on headings and short titles.
|
|
51
|
+
- Use `text-wrap: pretty` on short-to-medium body text, captions, descriptions,
|
|
52
|
+
and list items.
|
|
53
|
+
- Avoid both on long prose, code, and preformatted content.
|
|
54
|
+
- Use `font-variant-numeric: tabular-nums` for counters, timers, prices, tables,
|
|
55
|
+
and other updating numbers.
|
|
56
|
+
|
|
57
|
+
### Font Smoothing
|
|
58
|
+
|
|
59
|
+
On macOS, apply antialiased font smoothing at the root layout when the project
|
|
60
|
+
does not already do so:
|
|
61
|
+
|
|
62
|
+
```css
|
|
63
|
+
html {
|
|
64
|
+
-webkit-font-smoothing: antialiased;
|
|
65
|
+
-moz-osx-font-smoothing: grayscale;
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Image Outlines
|
|
70
|
+
|
|
71
|
+
Images often need a subtle inset outline so their edges do not blur into the
|
|
72
|
+
surface.
|
|
73
|
+
|
|
74
|
+
```css
|
|
75
|
+
img {
|
|
76
|
+
outline: 1px solid rgba(0, 0, 0, 0.1);
|
|
77
|
+
outline-offset: -1px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@media (prefers-color-scheme: dark) {
|
|
81
|
+
img {
|
|
82
|
+
outline-color: rgba(255, 255, 255, 0.1);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Use neutral black or white alpha outlines. Do not tint image outlines with the
|
|
88
|
+
brand palette.
|
|
89
|
+
|
|
90
|
+
### Motion
|
|
91
|
+
|
|
92
|
+
Use CSS transitions for interactive state changes because they can retarget
|
|
93
|
+
when the user changes intent mid-motion. Reserve keyframes for staged
|
|
94
|
+
one-shot entrances or loading sequences.
|
|
95
|
+
|
|
96
|
+
Good motion defaults:
|
|
97
|
+
|
|
98
|
+
- Enter: combine opacity, small `translateY`, and optionally blur.
|
|
99
|
+
- Exit: shorter and quieter than enter, usually 150ms.
|
|
100
|
+
- Press: `scale(0.96)` for tactile buttons, with a way to disable it when the
|
|
101
|
+
movement distracts.
|
|
102
|
+
- Icon swaps: cross-fade with opacity, scale, and blur instead of instant
|
|
103
|
+
visibility toggles.
|
|
104
|
+
|
|
105
|
+
### Transition Scope
|
|
106
|
+
|
|
107
|
+
Never use `transition: all`. Specify the changed properties:
|
|
108
|
+
|
|
109
|
+
```css
|
|
110
|
+
.button {
|
|
111
|
+
transition-property: transform, background-color, box-shadow;
|
|
112
|
+
transition-duration: 150ms;
|
|
113
|
+
transition-timing-function: ease-out;
|
|
114
|
+
}
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Use `will-change` only for first-frame stutter on compositor-friendly
|
|
118
|
+
properties such as `transform`, `opacity`, and `filter`. Never use
|
|
119
|
+
`will-change: all`.
|
|
120
|
+
|
|
121
|
+
### Hit Areas
|
|
122
|
+
|
|
123
|
+
Interactive controls should have at least a 40x40px hit area, ideally 44x44px
|
|
124
|
+
where the layout allows it. Expand with a pseudo-element when the visible icon
|
|
125
|
+
is smaller, but do not let expanded hit areas overlap.
|
|
126
|
+
|
|
127
|
+
## Review Output
|
|
128
|
+
|
|
129
|
+
When reviewing a UI polish pass, report concrete changes in before/after rows:
|
|
130
|
+
|
|
131
|
+
| Principle | Before | After |
|
|
132
|
+
| --- | --- | --- |
|
|
133
|
+
| Concentric radius | Same radius on parent and child | Parent radius accounts for padding |
|
|
134
|
+
| Tabular numbers | Counter shifts as digits change | Counter uses `tabular-nums` |
|
|
135
|
+
| Transition scope | `transition: all` | Explicit transition properties |
|
|
136
|
+
|
|
137
|
+
Include file paths and properties when they are not obvious from the snippets.
|
|
138
|
+
Omit principles that you checked but did not change.
|
|
139
|
+
|
|
140
|
+
## Checklist
|
|
141
|
+
|
|
142
|
+
- Nested rounded elements are optically coherent.
|
|
143
|
+
- Icons are visually centered.
|
|
144
|
+
- Buttons, cards, and popovers use borders or shadows for the right reason.
|
|
145
|
+
- Headings and short text avoid awkward wrapping.
|
|
146
|
+
- Dynamic numbers use tabular numerals.
|
|
147
|
+
- Images have neutral outlines where needed.
|
|
148
|
+
- Enter and exit animations are split, subtle, and interruptible where
|
|
149
|
+
appropriate.
|
|
150
|
+
- Buttons have tactile active states without exaggerated motion.
|
|
151
|
+
- `transition: all` and `will-change: all` are absent.
|
|
152
|
+
- Small controls still have usable hit areas.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Affaan Mustafa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: manim-video
|
|
3
|
+
description: Build reusable Manim explainers for technical concepts, graphs, system diagrams, and product walkthroughs, then hand off to the wider ECC video stack if needed. Use when the user wants a clean animated explainer rather than a generic talking-head script.
|
|
4
|
+
metadata:
|
|
5
|
+
origin: ECC
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Manim Video
|
|
9
|
+
|
|
10
|
+
Use Manim for technical explainers where motion, structure, and clarity matter more than photorealism.
|
|
11
|
+
|
|
12
|
+
## When to Activate
|
|
13
|
+
|
|
14
|
+
- the user wants a technical explainer animation
|
|
15
|
+
- the concept is a graph, workflow, architecture, metric progression, or system diagram
|
|
16
|
+
- the user wants a short product or launch explainer for X or a landing page
|
|
17
|
+
- the visual should feel precise instead of generically cinematic
|
|
18
|
+
|
|
19
|
+
## Tool Requirements
|
|
20
|
+
|
|
21
|
+
- `manim` CLI for scene rendering
|
|
22
|
+
- `ffmpeg` for post-processing if needed
|
|
23
|
+
- `video-editing` for final assembly or polish
|
|
24
|
+
- `remotion-video-creation` when the final package needs composited UI, captions, or additional motion layers
|
|
25
|
+
|
|
26
|
+
## Default Output
|
|
27
|
+
|
|
28
|
+
- short 16:9 MP4
|
|
29
|
+
- one thumbnail or poster frame
|
|
30
|
+
- storyboard plus scene plan
|
|
31
|
+
|
|
32
|
+
## Workflow
|
|
33
|
+
|
|
34
|
+
1. Define the core visual thesis in one sentence.
|
|
35
|
+
2. Break the concept into 3 to 6 scenes.
|
|
36
|
+
3. Decide what each scene proves.
|
|
37
|
+
4. Write the scene outline before writing Manim code.
|
|
38
|
+
5. Render the smallest working version first.
|
|
39
|
+
6. Tighten typography, spacing, color, and pacing after the render works.
|
|
40
|
+
7. Hand off to the wider video stack only if it adds value.
|
|
41
|
+
|
|
42
|
+
## Scene Planning Rules
|
|
43
|
+
|
|
44
|
+
- each scene should prove one thing
|
|
45
|
+
- avoid overstuffed diagrams
|
|
46
|
+
- prefer progressive reveal over full-screen clutter
|
|
47
|
+
- use motion to explain state change, not just to keep the screen busy
|
|
48
|
+
- title cards should be short and loaded with meaning
|
|
49
|
+
|
|
50
|
+
## Network Graph Default
|
|
51
|
+
|
|
52
|
+
For social-graph and network-optimization explainers:
|
|
53
|
+
|
|
54
|
+
- show the current graph before showing the optimized graph
|
|
55
|
+
- distinguish low-signal follow clutter from high-signal bridges
|
|
56
|
+
- highlight warm-path nodes and target clusters
|
|
57
|
+
- if useful, add a final scene showing the self-improvement lineage that informed the skill
|
|
58
|
+
|
|
59
|
+
## Render Conventions
|
|
60
|
+
|
|
61
|
+
- default to 16:9 landscape unless the user asks for vertical
|
|
62
|
+
- start with a low-quality smoke test render
|
|
63
|
+
- only push to higher quality after composition and timing are stable
|
|
64
|
+
- export one clean thumbnail frame that reads at social size
|
|
65
|
+
|
|
66
|
+
## Reusable Starter
|
|
67
|
+
|
|
68
|
+
Use [assets/network_graph_scene.py](assets/network_graph_scene.py) as a starting point for network-graph explainers.
|
|
69
|
+
|
|
70
|
+
Example smoke test:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
manim -ql assets/network_graph_scene.py NetworkGraphExplainer
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Output Format
|
|
77
|
+
|
|
78
|
+
Return:
|
|
79
|
+
|
|
80
|
+
- core visual thesis
|
|
81
|
+
- storyboard
|
|
82
|
+
- scene outline
|
|
83
|
+
- render plan
|
|
84
|
+
- any follow-on polish recommendations
|
|
85
|
+
|
|
86
|
+
## Related Skills
|
|
87
|
+
|
|
88
|
+
- `video-editing` for final polish
|
|
89
|
+
- `remotion-video-creation` for motion-heavy post-processing or compositing
|
|
90
|
+
- `content-engine` when the animation is part of a broader launch
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
from manim import DOWN, LEFT, RIGHT, UP, Circle, Create, FadeIn, FadeOut, Scene, Text, VGroup, CurvedArrow
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class NetworkGraphExplainer(Scene):
|
|
5
|
+
def construct(self):
|
|
6
|
+
title = Text("Connections Optimizer", font_size=40).to_edge(UP)
|
|
7
|
+
subtitle = Text("Prune low-signal follows. Strengthen warm paths.", font_size=20).next_to(title, DOWN)
|
|
8
|
+
|
|
9
|
+
you = Circle(radius=0.45, color="#4F8EF7").shift(LEFT * 4 + DOWN * 0.5)
|
|
10
|
+
you_label = Text("You", font_size=22).move_to(you.get_center())
|
|
11
|
+
|
|
12
|
+
stale_a = Circle(radius=0.32, color="#7A7A7A").shift(LEFT * 1.6 + UP * 1.2)
|
|
13
|
+
stale_b = Circle(radius=0.32, color="#7A7A7A").shift(LEFT * 1.2 + DOWN * 1.4)
|
|
14
|
+
bridge = Circle(radius=0.38, color="#21A179").shift(RIGHT * 0.2 + UP * 0.2)
|
|
15
|
+
target = Circle(radius=0.42, color="#FF9F1C").shift(RIGHT * 3.2 + UP * 0.7)
|
|
16
|
+
new_target = Circle(radius=0.42, color="#FF9F1C").shift(RIGHT * 3.0 + DOWN * 1.4)
|
|
17
|
+
|
|
18
|
+
stale_a_label = Text("stale", font_size=18).move_to(stale_a.get_center())
|
|
19
|
+
stale_b_label = Text("noise", font_size=18).move_to(stale_b.get_center())
|
|
20
|
+
bridge_label = Text("bridge", font_size=18).move_to(bridge.get_center())
|
|
21
|
+
target_label = Text("target", font_size=18).move_to(target.get_center())
|
|
22
|
+
new_target_label = Text("add", font_size=18).move_to(new_target.get_center())
|
|
23
|
+
|
|
24
|
+
edge_stale_a = CurvedArrow(you.get_right(), stale_a.get_left(), angle=0.2, color="#7A7A7A")
|
|
25
|
+
edge_stale_b = CurvedArrow(you.get_right(), stale_b.get_left(), angle=-0.2, color="#7A7A7A")
|
|
26
|
+
edge_bridge = CurvedArrow(you.get_right(), bridge.get_left(), angle=0.0, color="#21A179")
|
|
27
|
+
edge_target = CurvedArrow(bridge.get_right(), target.get_left(), angle=0.1, color="#21A179")
|
|
28
|
+
edge_new_target = CurvedArrow(bridge.get_right(), new_target.get_left(), angle=-0.12, color="#21A179")
|
|
29
|
+
|
|
30
|
+
self.play(FadeIn(title), FadeIn(subtitle))
|
|
31
|
+
self.play(
|
|
32
|
+
Create(you),
|
|
33
|
+
FadeIn(you_label),
|
|
34
|
+
Create(stale_a),
|
|
35
|
+
Create(stale_b),
|
|
36
|
+
Create(bridge),
|
|
37
|
+
Create(target),
|
|
38
|
+
FadeIn(stale_a_label),
|
|
39
|
+
FadeIn(stale_b_label),
|
|
40
|
+
FadeIn(bridge_label),
|
|
41
|
+
FadeIn(target_label),
|
|
42
|
+
)
|
|
43
|
+
self.play(Create(edge_stale_a), Create(edge_stale_b), Create(edge_bridge), Create(edge_target))
|
|
44
|
+
|
|
45
|
+
optimize = Text("Optimize the graph", font_size=24).to_edge(DOWN)
|
|
46
|
+
self.play(FadeIn(optimize))
|
|
47
|
+
self.play(FadeOut(stale_a), FadeOut(stale_b), FadeOut(stale_a_label), FadeOut(stale_b_label), FadeOut(edge_stale_a), FadeOut(edge_stale_b))
|
|
48
|
+
self.play(Create(new_target), FadeIn(new_target_label), Create(edge_new_target))
|
|
49
|
+
|
|
50
|
+
final_group = VGroup(you, you_label, bridge, bridge_label, target, target_label, new_target, new_target_label)
|
|
51
|
+
self.play(final_group.animate.shift(UP * 0.1))
|
|
52
|
+
self.wait(1)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Affaan Mustafa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|