@heytherevibin/skillforge 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/CODE_OF_CONDUCT.md +34 -0
- package/CONTRIBUTING.md +38 -0
- package/LICENSE +21 -0
- package/README.md +337 -0
- package/RELEASING.md +93 -0
- package/SECURITY.md +31 -0
- package/STRATEGY.md +26 -0
- package/bin/cli.js +547 -0
- package/lib/packs.js +184 -0
- package/package.json +38 -0
- package/python/app/__init__.py +0 -0
- package/python/app/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/app/__pycache__/auth.cpython-312.pyc +0 -0
- package/python/app/__pycache__/main.cpython-312.pyc +0 -0
- package/python/app/auth.py +63 -0
- package/python/app/cli.py +78 -0
- package/python/app/db_paths.py +26 -0
- package/python/app/events_cli.py +175 -0
- package/python/app/main.py +647 -0
- package/python/app/materialize.py +138 -0
- package/python/app/mcp_server.py +610 -0
- package/python/app/route_cli.py +117 -0
- package/python/requirements-dev.txt +1 -0
- package/python/requirements.txt +7 -0
- package/python/tests/test_db_paths.py +41 -0
- package/skills/accessibility/SKILL.md +145 -0
- package/skills/agent-architecture-audit/SKILL.md +256 -0
- package/skills/agent-eval/SKILL.md +144 -0
- package/skills/agent-harness-construction/SKILL.md +72 -0
- package/skills/agent-introspection-debugging/SKILL.md +152 -0
- package/skills/agent-payment-x402/SKILL.md +224 -0
- package/skills/agent-sort/SKILL.md +214 -0
- package/skills/agentic-engineering/SKILL.md +62 -0
- package/skills/agentic-os/SKILL.md +386 -0
- package/skills/ai-first-engineering/SKILL.md +50 -0
- package/skills/ai-regression-testing/SKILL.md +384 -0
- package/skills/android-clean-architecture/SKILL.md +338 -0
- package/skills/angular-developer/SKILL.md +153 -0
- package/skills/angular-developer/references/angular-animations.md +160 -0
- package/skills/angular-developer/references/angular-aria.md +410 -0
- package/skills/angular-developer/references/cli.md +86 -0
- package/skills/angular-developer/references/component-harnesses.md +59 -0
- package/skills/angular-developer/references/component-styling.md +91 -0
- package/skills/angular-developer/references/components.md +117 -0
- package/skills/angular-developer/references/creating-services.md +97 -0
- package/skills/angular-developer/references/data-resolvers.md +69 -0
- package/skills/angular-developer/references/define-routes.md +67 -0
- package/skills/angular-developer/references/defining-providers.md +72 -0
- package/skills/angular-developer/references/di-fundamentals.md +120 -0
- package/skills/angular-developer/references/e2e-testing.md +56 -0
- package/skills/angular-developer/references/effects.md +83 -0
- package/skills/angular-developer/references/hierarchical-injectors.md +43 -0
- package/skills/angular-developer/references/host-elements.md +80 -0
- package/skills/angular-developer/references/injection-context.md +63 -0
- package/skills/angular-developer/references/inputs.md +101 -0
- package/skills/angular-developer/references/linked-signal.md +59 -0
- package/skills/angular-developer/references/loading-strategies.md +61 -0
- package/skills/angular-developer/references/mcp.md +108 -0
- package/skills/angular-developer/references/navigate-to-routes.md +69 -0
- package/skills/angular-developer/references/outputs.md +86 -0
- package/skills/angular-developer/references/reactive-forms.md +122 -0
- package/skills/angular-developer/references/rendering-strategies.md +44 -0
- package/skills/angular-developer/references/resource.md +77 -0
- package/skills/angular-developer/references/route-animations.md +56 -0
- package/skills/angular-developer/references/route-guards.md +52 -0
- package/skills/angular-developer/references/router-lifecycle.md +45 -0
- package/skills/angular-developer/references/router-testing.md +87 -0
- package/skills/angular-developer/references/show-routes-with-outlets.md +68 -0
- package/skills/angular-developer/references/signal-forms.md +795 -0
- package/skills/angular-developer/references/signals-overview.md +94 -0
- package/skills/angular-developer/references/tailwind-css.md +69 -0
- package/skills/angular-developer/references/template-driven-forms.md +114 -0
- package/skills/angular-developer/references/testing-fundamentals.md +65 -0
- package/skills/api-connector-builder/SKILL.md +120 -0
- package/skills/api-design/SKILL.md +522 -0
- package/skills/architecture-decision-records/SKILL.md +178 -0
- package/skills/article-writing/SKILL.md +78 -0
- package/skills/automation-audit-ops/SKILL.md +141 -0
- package/skills/autonomous-agent-harness/SKILL.md +272 -0
- package/skills/autonomous-loops/SKILL.md +609 -0
- package/skills/backend-patterns/SKILL.md +560 -0
- package/skills/benchmark/SKILL.md +92 -0
- package/skills/blueprint/SKILL.md +104 -0
- package/skills/browser-qa/SKILL.md +86 -0
- package/skills/bun-runtime/SKILL.md +83 -0
- package/skills/canary-watch/SKILL.md +98 -0
- package/skills/carrier-relationship-management/SKILL.md +211 -0
- package/skills/cisco-ios-patterns/SKILL.md +163 -0
- package/skills/ck/SKILL.md +147 -0
- package/skills/ck/commands/forget.mjs +44 -0
- package/skills/ck/commands/info.mjs +24 -0
- package/skills/ck/commands/init.mjs +143 -0
- package/skills/ck/commands/list.mjs +40 -0
- package/skills/ck/commands/migrate.mjs +202 -0
- package/skills/ck/commands/resume.mjs +36 -0
- package/skills/ck/commands/save.mjs +210 -0
- package/skills/ck/commands/shared.mjs +387 -0
- package/skills/ck/hooks/session-start.mjs +224 -0
- package/skills/claude-devfleet/SKILL.md +103 -0
- package/skills/click-path-audit/SKILL.md +244 -0
- package/skills/clickhouse-io/SKILL.md +438 -0
- package/skills/code-tour/SKILL.md +235 -0
- package/skills/codebase-onboarding/SKILL.md +232 -0
- package/skills/coding-standards/SKILL.md +548 -0
- package/skills/compose-multiplatform-patterns/SKILL.md +298 -0
- package/skills/connections-optimizer/SKILL.md +188 -0
- package/skills/content-engine/SKILL.md +126 -0
- package/skills/content-hash-cache-pattern/SKILL.md +160 -0
- package/skills/context-budget/SKILL.md +134 -0
- package/skills/continuous-agent-loop/SKILL.md +44 -0
- package/skills/continuous-learning/SKILL.md +129 -0
- package/skills/continuous-learning/config.json +18 -0
- package/skills/continuous-learning/evaluate-session.sh +69 -0
- package/skills/continuous-learning-v2/SKILL.md +358 -0
- package/skills/continuous-learning-v2/agents/observer-loop.sh +322 -0
- package/skills/continuous-learning-v2/agents/observer.md +198 -0
- package/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
- package/skills/continuous-learning-v2/agents/start-observer.sh +248 -0
- package/skills/continuous-learning-v2/config.json +8 -0
- package/skills/continuous-learning-v2/hooks/observe.sh +476 -0
- package/skills/continuous-learning-v2/scripts/detect-project.sh +288 -0
- package/skills/continuous-learning-v2/scripts/instinct-cli.py +1519 -0
- package/skills/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
- package/skills/continuous-learning-v2/scripts/migrate-homunculus.sh +62 -0
- package/skills/continuous-learning-v2/scripts/test_parse_instinct.py +1018 -0
- package/skills/cost-aware-llm-pipeline/SKILL.md +182 -0
- package/skills/cost-tracking/SKILL.md +147 -0
- package/skills/council/SKILL.md +202 -0
- package/skills/cpp-coding-standards/SKILL.md +722 -0
- package/skills/cpp-testing/SKILL.md +323 -0
- package/skills/crosspost/SKILL.md +110 -0
- package/skills/csharp-testing/SKILL.md +320 -0
- package/skills/customer-billing-ops/SKILL.md +139 -0
- package/skills/customs-trade-compliance/SKILL.md +262 -0
- package/skills/dart-flutter-patterns/SKILL.md +562 -0
- package/skills/dashboard-builder/SKILL.md +108 -0
- package/skills/data-scraper-agent/SKILL.md +764 -0
- package/skills/database-migrations/SKILL.md +428 -0
- package/skills/deep-research/SKILL.md +158 -0
- package/skills/defi-amm-security/SKILL.md +166 -0
- package/skills/deployment-patterns/SKILL.md +426 -0
- package/skills/design-system/SKILL.md +81 -0
- package/skills/django-celery/SKILL.md +456 -0
- package/skills/django-patterns/SKILL.md +733 -0
- package/skills/django-security/SKILL.md +592 -0
- package/skills/django-tdd/SKILL.md +728 -0
- package/skills/django-verification/SKILL.md +468 -0
- package/skills/dmux-workflows/SKILL.md +190 -0
- package/skills/docker-patterns/SKILL.md +363 -0
- package/skills/documentation-lookup/SKILL.md +89 -0
- package/skills/dotnet-patterns/SKILL.md +320 -0
- package/skills/e2e-testing/SKILL.md +325 -0
- package/skills/email-ops/SKILL.md +120 -0
- package/skills/energy-procurement/SKILL.md +227 -0
- package/skills/enterprise-agent-ops/SKILL.md +49 -0
- package/skills/error-handling/SKILL.md +375 -0
- package/skills/eval-harness/SKILL.md +269 -0
- package/skills/evm-token-decimals/SKILL.md +130 -0
- package/skills/exa-search/SKILL.md +106 -0
- package/skills/fal-ai-media/SKILL.md +287 -0
- package/skills/fastapi-patterns/SKILL.md +327 -0
- package/skills/finance-billing-ops/SKILL.md +126 -0
- package/skills/flox-environments/SKILL.md +496 -0
- package/skills/flutter-dart-code-review/SKILL.md +434 -0
- package/skills/foundation-models-on-device/SKILL.md +243 -0
- package/skills/frontend-design-direction/SKILL.md +92 -0
- package/skills/frontend-patterns/SKILL.md +641 -0
- package/skills/frontend-slides/SKILL.md +183 -0
- package/skills/frontend-slides/STYLE_PRESETS.md +330 -0
- package/skills/frontend-slides/animation-patterns.md +122 -0
- package/skills/frontend-slides/html-template.md +419 -0
- package/skills/frontend-slides/scripts/export-pdf.sh +418 -0
- package/skills/frontend-slides/scripts/extract-pptx.py +96 -0
- package/skills/frontend-slides/viewport-base.css +153 -0
- package/skills/fsharp-testing/SKILL.md +279 -0
- package/skills/gan-style-harness/SKILL.md +278 -0
- package/skills/gateguard/SKILL.md +125 -0
- package/skills/git-workflow/SKILL.md +714 -0
- package/skills/github-ops/SKILL.md +143 -0
- package/skills/golang-patterns/SKILL.md +673 -0
- package/skills/golang-testing/SKILL.md +719 -0
- package/skills/google-workspace-ops/SKILL.md +94 -0
- package/skills/healthcare-cdss-patterns/SKILL.md +245 -0
- package/skills/healthcare-emr-patterns/SKILL.md +159 -0
- package/skills/healthcare-eval-harness/SKILL.md +207 -0
- package/skills/healthcare-phi-compliance/SKILL.md +145 -0
- package/skills/hermes-imports/SKILL.md +87 -0
- package/skills/hexagonal-architecture/SKILL.md +275 -0
- package/skills/hipaa-compliance/SKILL.md +78 -0
- package/skills/homelab-network-readiness/SKILL.md +169 -0
- package/skills/homelab-network-setup/SKILL.md +129 -0
- package/skills/homelab-pihole-dns/SKILL.md +274 -0
- package/skills/homelab-vlan-segmentation/SKILL.md +311 -0
- package/skills/homelab-wireguard-vpn/SKILL.md +305 -0
- package/skills/hookify-rules/SKILL.md +128 -0
- package/skills/inventory-demand-planning/SKILL.md +246 -0
- package/skills/investor-materials/SKILL.md +95 -0
- package/skills/investor-outreach/SKILL.md +90 -0
- package/skills/ios-icon-gen/SKILL.md +157 -0
- package/skills/ios-icon-gen/scripts/generate_icons.swift +258 -0
- package/skills/ios-icon-gen/scripts/iconify_gen.sh +235 -0
- package/skills/iterative-retrieval/SKILL.md +209 -0
- package/skills/java-coding-standards/SKILL.md +382 -0
- package/skills/jira-integration/SKILL.md +292 -0
- package/skills/jpa-patterns/SKILL.md +150 -0
- package/skills/knowledge-ops/SKILL.md +153 -0
- package/skills/kotlin-coroutines-flows/SKILL.md +283 -0
- package/skills/kotlin-exposed-patterns/SKILL.md +718 -0
- package/skills/kotlin-ktor-patterns/SKILL.md +688 -0
- package/skills/kotlin-patterns/SKILL.md +710 -0
- package/skills/kotlin-testing/SKILL.md +823 -0
- package/skills/laravel-patterns/SKILL.md +414 -0
- package/skills/laravel-plugin-discovery/SKILL.md +228 -0
- package/skills/laravel-security/SKILL.md +284 -0
- package/skills/laravel-tdd/SKILL.md +282 -0
- package/skills/laravel-verification/SKILL.md +178 -0
- package/skills/lead-intelligence/SKILL.md +320 -0
- package/skills/lead-intelligence/agents/enrichment-agent.md +85 -0
- package/skills/lead-intelligence/agents/mutual-mapper.md +75 -0
- package/skills/lead-intelligence/agents/outreach-drafter.md +98 -0
- package/skills/lead-intelligence/agents/signal-scorer.md +60 -0
- package/skills/liquid-glass-design/SKILL.md +279 -0
- package/skills/llm-trading-agent-security/SKILL.md +146 -0
- package/skills/logistics-exception-management/SKILL.md +221 -0
- package/skills/make-interfaces-feel-better/SKILL.md +151 -0
- package/skills/manim-video/SKILL.md +88 -0
- package/skills/manim-video/assets/network_graph_scene.py +52 -0
- package/skills/market-research/SKILL.md +74 -0
- package/skills/mcp-server-patterns/SKILL.md +68 -0
- package/skills/messages-ops/SKILL.md +103 -0
- package/skills/mle-workflow/SKILL.md +345 -0
- package/skills/motion-advanced/SKILL.md +596 -0
- package/skills/motion-foundations/SKILL.md +299 -0
- package/skills/motion-patterns/SKILL.md +435 -0
- package/skills/motion-ui/SKILL.md +574 -0
- package/skills/mysql-patterns/SKILL.md +411 -0
- package/skills/nanoclaw-repl/SKILL.md +32 -0
- package/skills/nestjs-patterns/SKILL.md +229 -0
- package/skills/netmiko-ssh-automation/SKILL.md +173 -0
- package/skills/network-bgp-diagnostics/SKILL.md +167 -0
- package/skills/network-config-validation/SKILL.md +210 -0
- package/skills/network-interface-health/SKILL.md +152 -0
- package/skills/nextjs-turbopack/SKILL.md +43 -0
- package/skills/nodejs-keccak256/SKILL.md +102 -0
- package/skills/nutrient-document-processing/SKILL.md +166 -0
- package/skills/nuxt4-patterns/SKILL.md +99 -0
- package/skills/openclaw-persona-forge/SKILL.md +288 -0
- package/skills/openclaw-persona-forge/gacha.py +224 -0
- package/skills/openclaw-persona-forge/gacha.sh +5 -0
- package/skills/openclaw-persona-forge/references/avatar-style.md +124 -0
- package/skills/openclaw-persona-forge/references/boundary-rules.md +53 -0
- package/skills/openclaw-persona-forge/references/error-handling.md +53 -0
- package/skills/openclaw-persona-forge/references/identity-tension.md +48 -0
- package/skills/openclaw-persona-forge/references/naming-system.md +39 -0
- package/skills/openclaw-persona-forge/references/output-template.md +166 -0
- package/skills/opensource-pipeline/SKILL.md +254 -0
- package/skills/perl-patterns/SKILL.md +503 -0
- package/skills/perl-security/SKILL.md +502 -0
- package/skills/perl-testing/SKILL.md +474 -0
- package/skills/plan-orchestrate/SKILL.md +253 -0
- package/skills/plankton-code-quality/SKILL.md +236 -0
- package/skills/postgres-patterns/SKILL.md +146 -0
- package/skills/product-capability/SKILL.md +140 -0
- package/skills/product-lens/SKILL.md +91 -0
- package/skills/production-audit/SKILL.md +206 -0
- package/skills/production-scheduling/SKILL.md +237 -0
- package/skills/project-flow-ops/SKILL.md +110 -0
- package/skills/prompt-optimizer/SKILL.md +398 -0
- package/skills/python-patterns/SKILL.md +749 -0
- package/skills/python-testing/SKILL.md +815 -0
- package/skills/pytorch-patterns/SKILL.md +395 -0
- package/skills/quality-nonconformance/SKILL.md +259 -0
- package/skills/quarkus-patterns/SKILL.md +721 -0
- package/skills/quarkus-security/SKILL.md +466 -0
- package/skills/quarkus-tdd/SKILL.md +810 -0
- package/skills/quarkus-verification/SKILL.md +478 -0
- package/skills/ralphinho-rfc-pipeline/SKILL.md +66 -0
- package/skills/redis-patterns/SKILL.md +402 -0
- package/skills/regex-vs-llm-structured-text/SKILL.md +219 -0
- package/skills/remotion-video-creation/SKILL.md +43 -0
- package/skills/remotion-video-creation/rules/3d.md +86 -0
- package/skills/remotion-video-creation/rules/animations.md +29 -0
- package/skills/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
- package/skills/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
- package/skills/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/skills/remotion-video-creation/rules/assets.md +78 -0
- package/skills/remotion-video-creation/rules/audio.md +172 -0
- package/skills/remotion-video-creation/rules/calculate-metadata.md +104 -0
- package/skills/remotion-video-creation/rules/can-decode.md +75 -0
- package/skills/remotion-video-creation/rules/charts.md +58 -0
- package/skills/remotion-video-creation/rules/compositions.md +146 -0
- package/skills/remotion-video-creation/rules/display-captions.md +126 -0
- package/skills/remotion-video-creation/rules/extract-frames.md +229 -0
- package/skills/remotion-video-creation/rules/fonts.md +152 -0
- package/skills/remotion-video-creation/rules/get-audio-duration.md +58 -0
- package/skills/remotion-video-creation/rules/get-video-dimensions.md +68 -0
- package/skills/remotion-video-creation/rules/get-video-duration.md +58 -0
- package/skills/remotion-video-creation/rules/gifs.md +138 -0
- package/skills/remotion-video-creation/rules/images.md +130 -0
- package/skills/remotion-video-creation/rules/import-srt-captions.md +67 -0
- package/skills/remotion-video-creation/rules/lottie.md +67 -0
- package/skills/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
- package/skills/remotion-video-creation/rules/measuring-text.md +143 -0
- package/skills/remotion-video-creation/rules/sequencing.md +106 -0
- package/skills/remotion-video-creation/rules/tailwind.md +11 -0
- package/skills/remotion-video-creation/rules/text-animations.md +20 -0
- package/skills/remotion-video-creation/rules/timing.md +179 -0
- package/skills/remotion-video-creation/rules/transcribe-captions.md +19 -0
- package/skills/remotion-video-creation/rules/transitions.md +122 -0
- package/skills/remotion-video-creation/rules/trimming.md +52 -0
- package/skills/remotion-video-creation/rules/videos.md +171 -0
- package/skills/repo-scan/SKILL.md +78 -0
- package/skills/research-ops/SKILL.md +111 -0
- package/skills/returns-reverse-logistics/SKILL.md +239 -0
- package/skills/rules-distill/SKILL.md +263 -0
- package/skills/rules-distill/scripts/scan-rules.sh +58 -0
- package/skills/rules-distill/scripts/scan-skills.sh +129 -0
- package/skills/rust-patterns/SKILL.md +498 -0
- package/skills/rust-testing/SKILL.md +499 -0
- package/skills/safety-guard/SKILL.md +74 -0
- package/skills/santa-method/SKILL.md +306 -0
- package/skills/scientific-db-pubmed-database/SKILL.md +175 -0
- package/skills/scientific-db-uspto-database/SKILL.md +177 -0
- package/skills/scientific-pkg-gget/SKILL.md +166 -0
- package/skills/scientific-thinking-literature-review/SKILL.md +192 -0
- package/skills/scientific-thinking-scholar-evaluation/SKILL.md +160 -0
- package/skills/search-first/SKILL.md +181 -0
- package/skills/security-bounty-hunter/SKILL.md +99 -0
- package/skills/security-review/SKILL.md +502 -0
- package/skills/security-review/cloud-infrastructure-security.md +361 -0
- package/skills/seo/SKILL.md +153 -0
- package/skills/skill-comply/SKILL.md +57 -0
- package/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
- package/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
- package/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
- package/skills/skill-comply/prompts/classifier.md +24 -0
- package/skills/skill-comply/prompts/scenario_generator.md +62 -0
- package/skills/skill-comply/prompts/spec_generator.md +42 -0
- package/skills/skill-comply/pyproject.toml +15 -0
- package/skills/skill-comply/scripts/__init__.py +0 -0
- package/skills/skill-comply/scripts/classifier.py +85 -0
- package/skills/skill-comply/scripts/grader.py +124 -0
- package/skills/skill-comply/scripts/parser.py +107 -0
- package/skills/skill-comply/scripts/report.py +170 -0
- package/skills/skill-comply/scripts/run.py +127 -0
- package/skills/skill-comply/scripts/runner.py +186 -0
- package/skills/skill-comply/scripts/scenario_generator.py +70 -0
- package/skills/skill-comply/scripts/spec_generator.py +72 -0
- package/skills/skill-comply/scripts/utils.py +13 -0
- package/skills/skill-comply/tests/test_grader.py +197 -0
- package/skills/skill-comply/tests/test_parser.py +90 -0
- package/skills/skill-comply/tests/test_runner.py +172 -0
- package/skills/skill-scout/SKILL.md +139 -0
- package/skills/skill-stocktake/SKILL.md +193 -0
- package/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
- package/skills/skill-stocktake/scripts/save-results.sh +56 -0
- package/skills/skill-stocktake/scripts/scan.sh +170 -0
- package/skills/social-graph-ranker/SKILL.md +153 -0
- package/skills/springboot-patterns/SKILL.md +313 -0
- package/skills/springboot-security/SKILL.md +271 -0
- package/skills/springboot-tdd/SKILL.md +157 -0
- package/skills/springboot-verification/SKILL.md +230 -0
- package/skills/strategic-compact/SKILL.md +129 -0
- package/skills/strategic-compact/suggest-compact.sh +54 -0
- package/skills/swift-actor-persistence/SKILL.md +142 -0
- package/skills/swift-concurrency-6-2/SKILL.md +216 -0
- package/skills/swift-protocol-di-testing/SKILL.md +189 -0
- package/skills/swiftui-patterns/SKILL.md +259 -0
- package/skills/tdd-workflow/SKILL.md +462 -0
- package/skills/team-builder/SKILL.md +166 -0
- package/skills/terminal-ops/SKILL.md +108 -0
- package/skills/tinystruct-patterns/SKILL.md +130 -0
- package/skills/tinystruct-patterns/references/architecture.md +77 -0
- package/skills/tinystruct-patterns/references/data-handling.md +35 -0
- package/skills/tinystruct-patterns/references/routing.md +57 -0
- package/skills/tinystruct-patterns/references/system-usage.md +74 -0
- package/skills/tinystruct-patterns/references/testing.md +59 -0
- package/skills/token-budget-advisor/SKILL.md +133 -0
- package/skills/ui-demo/SKILL.md +464 -0
- package/skills/ui-to-vue/SKILL.md +134 -0
- package/skills/unified-notifications-ops/SKILL.md +186 -0
- package/skills/verification-loop/SKILL.md +125 -0
- package/skills/video-editing/SKILL.md +309 -0
- package/skills/videodb/SKILL.md +373 -0
- package/skills/videodb/reference/api-reference.md +550 -0
- package/skills/videodb/reference/capture-reference.md +407 -0
- package/skills/videodb/reference/capture.md +101 -0
- package/skills/videodb/reference/editor.md +443 -0
- package/skills/videodb/reference/generative.md +331 -0
- package/skills/videodb/reference/rtstream-reference.md +564 -0
- package/skills/videodb/reference/rtstream.md +65 -0
- package/skills/videodb/reference/search.md +230 -0
- package/skills/videodb/reference/streaming.md +406 -0
- package/skills/videodb/reference/use-cases.md +118 -0
- package/skills/videodb/scripts/ws_listener.py +282 -0
- package/skills/visa-doc-translate/README.md +86 -0
- package/skills/visa-doc-translate/SKILL.md +117 -0
- package/skills/vite-patterns/SKILL.md +448 -0
- package/skills/windows-desktop-e2e/SKILL.md +787 -0
- package/skills/workspace-surface-audit/SKILL.md +124 -0
- package/skills/x-api/SKILL.md +233 -0
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-sort
|
|
3
|
+
description: Build an evidence-backed install plan for a specific repo by sorting skills, commands, rules, hooks, and extras into DAILY vs LIBRARY buckets using parallel repo-aware review passes. Use when the toolset should be trimmed to what a project actually needs instead of loading the full bundle.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agent Sort
|
|
7
|
+
|
|
8
|
+
Use this skill when a repo needs a project-specific the toolset surface instead of the default full install.
|
|
9
|
+
|
|
10
|
+
The goal is not to guess what "feels useful." The goal is to classify components with evidence from the actual codebase.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- A project only needs a subset of the toolset and full installs are too noisy
|
|
15
|
+
- The repo stack is clear, but nobody wants to hand-curate skills one by one
|
|
16
|
+
- A team wants a repeatable install decision backed by grep evidence instead of opinion
|
|
17
|
+
- You need to separate always-loaded daily workflow surfaces from searchable library/reference surfaces
|
|
18
|
+
- A repo has drifted into the wrong language, rule, or hook set and needs cleanup
|
|
19
|
+
|
|
20
|
+
## Non-Negotiable Rules
|
|
21
|
+
|
|
22
|
+
- Use the current repository as the source of truth, not generic preferences
|
|
23
|
+
- Every DAILY decision must cite concrete repo evidence
|
|
24
|
+
- LIBRARY does not mean "delete"; it means "keep accessible without loading by default"
|
|
25
|
+
- Do not install hooks, rules, or scripts that the current repo cannot use
|
|
26
|
+
- Prefer the toolset-native surfaces; do not introduce a second install system
|
|
27
|
+
|
|
28
|
+
## Outputs
|
|
29
|
+
|
|
30
|
+
Produce these artifacts in order:
|
|
31
|
+
|
|
32
|
+
1. DAILY inventory
|
|
33
|
+
2. LIBRARY inventory
|
|
34
|
+
3. install plan
|
|
35
|
+
4. verification report
|
|
36
|
+
5. optional `skill-library` router if the project wants one
|
|
37
|
+
|
|
38
|
+
## Classification Model
|
|
39
|
+
|
|
40
|
+
Use two buckets only:
|
|
41
|
+
|
|
42
|
+
- `DAILY`
|
|
43
|
+
- should load every session for this repo
|
|
44
|
+
- strongly matched to the repo's language, framework, workflow, or operator surface
|
|
45
|
+
- `LIBRARY`
|
|
46
|
+
- useful to retain, but not worth loading by default
|
|
47
|
+
- should remain reachable through search, router skill, or selective manual use
|
|
48
|
+
|
|
49
|
+
## Evidence Sources
|
|
50
|
+
|
|
51
|
+
Use repo-local evidence before making any classification:
|
|
52
|
+
|
|
53
|
+
- file extensions
|
|
54
|
+
- package managers and lockfiles
|
|
55
|
+
- framework configs
|
|
56
|
+
- CI and hook configs
|
|
57
|
+
- build/test scripts
|
|
58
|
+
- imports and dependency manifests
|
|
59
|
+
- repo docs that explicitly describe the stack
|
|
60
|
+
|
|
61
|
+
Useful commands include:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
rg --files
|
|
65
|
+
rg -n "typescript|react|next|supabase|django|spring|flutter|swift"
|
|
66
|
+
cat package.json
|
|
67
|
+
cat pyproject.toml
|
|
68
|
+
cat Cargo.toml
|
|
69
|
+
cat pubspec.yaml
|
|
70
|
+
cat go.mod
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Parallel Review Passes
|
|
74
|
+
|
|
75
|
+
If parallel subagents are available, split the review into these passes:
|
|
76
|
+
|
|
77
|
+
1. Agents
|
|
78
|
+
- classify `agents/*`
|
|
79
|
+
2. Skills
|
|
80
|
+
- classify `skills/*`
|
|
81
|
+
3. Commands
|
|
82
|
+
- classify `commands/*`
|
|
83
|
+
4. Rules
|
|
84
|
+
- classify `rules/*`
|
|
85
|
+
5. Hooks and scripts
|
|
86
|
+
- classify hook surfaces, MCP health checks, helper scripts, and OS compatibility
|
|
87
|
+
6. Extras
|
|
88
|
+
- classify contexts, examples, MCP configs, templates, and guidance docs
|
|
89
|
+
|
|
90
|
+
If subagents are not available, run the same passes sequentially.
|
|
91
|
+
|
|
92
|
+
## Core Workflow
|
|
93
|
+
|
|
94
|
+
### 1. Read the repo
|
|
95
|
+
|
|
96
|
+
Establish the real stack before classifying anything:
|
|
97
|
+
|
|
98
|
+
- languages in use
|
|
99
|
+
- frameworks in use
|
|
100
|
+
- primary package manager
|
|
101
|
+
- test stack
|
|
102
|
+
- lint/format stack
|
|
103
|
+
- deployment/runtime surface
|
|
104
|
+
- operator integrations already present
|
|
105
|
+
|
|
106
|
+
### 2. Build the evidence table
|
|
107
|
+
|
|
108
|
+
For every candidate surface, record:
|
|
109
|
+
|
|
110
|
+
- component path
|
|
111
|
+
- component type
|
|
112
|
+
- proposed bucket
|
|
113
|
+
- repo evidence
|
|
114
|
+
- short justification
|
|
115
|
+
|
|
116
|
+
Use this format:
|
|
117
|
+
|
|
118
|
+
```text
|
|
119
|
+
skills/frontend-patterns | skill | DAILY | 84 .tsx files, next.config.ts present | core frontend stack
|
|
120
|
+
skills/django-patterns | skill | LIBRARY | no .py files, no pyproject.toml | not active in this repo
|
|
121
|
+
rules/typescript/* | rules | DAILY | package.json + tsconfig.json | active TS repo
|
|
122
|
+
rules/python/* | rules | LIBRARY | zero Python source files | keep accessible only
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### 3. Decide DAILY vs LIBRARY
|
|
126
|
+
|
|
127
|
+
Promote to `DAILY` when:
|
|
128
|
+
|
|
129
|
+
- the repo clearly uses the matching stack
|
|
130
|
+
- the component is general enough to help every session
|
|
131
|
+
- the repo already depends on the corresponding runtime or workflow
|
|
132
|
+
|
|
133
|
+
Demote to `LIBRARY` when:
|
|
134
|
+
|
|
135
|
+
- the component is off-stack
|
|
136
|
+
- the repo might need it later, but not every day
|
|
137
|
+
- it adds context overhead without immediate relevance
|
|
138
|
+
|
|
139
|
+
### 4. Build the install plan
|
|
140
|
+
|
|
141
|
+
Translate the classification into action:
|
|
142
|
+
|
|
143
|
+
- DAILY skills -> install or keep in `.claude/skills/`
|
|
144
|
+
- DAILY commands -> keep as explicit shims only if still useful
|
|
145
|
+
- DAILY rules -> install only matching language sets
|
|
146
|
+
- DAILY hooks/scripts -> keep only compatible ones
|
|
147
|
+
- LIBRARY surfaces -> keep accessible through search or `skill-library`
|
|
148
|
+
|
|
149
|
+
If the repo already uses selective installs, update that plan instead of creating another system.
|
|
150
|
+
|
|
151
|
+
### 5. Create the optional library router
|
|
152
|
+
|
|
153
|
+
If the project wants a searchable library surface, create:
|
|
154
|
+
|
|
155
|
+
- `.claude/skills/skill-library/SKILL.md`
|
|
156
|
+
|
|
157
|
+
That router should contain:
|
|
158
|
+
|
|
159
|
+
- a short explanation of DAILY vs LIBRARY
|
|
160
|
+
- grouped trigger keywords
|
|
161
|
+
- where the library references live
|
|
162
|
+
|
|
163
|
+
Do not duplicate every skill body inside the router.
|
|
164
|
+
|
|
165
|
+
### 6. Verify the result
|
|
166
|
+
|
|
167
|
+
After the plan is applied, verify:
|
|
168
|
+
|
|
169
|
+
- every DAILY file exists where expected
|
|
170
|
+
- stale language rules were not left active
|
|
171
|
+
- incompatible hooks were not installed
|
|
172
|
+
- the resulting install actually matches the repo stack
|
|
173
|
+
|
|
174
|
+
Return a compact report with:
|
|
175
|
+
|
|
176
|
+
- DAILY count
|
|
177
|
+
- LIBRARY count
|
|
178
|
+
- removed stale surfaces
|
|
179
|
+
- open questions
|
|
180
|
+
|
|
181
|
+
## Handoffs
|
|
182
|
+
|
|
183
|
+
If the next step is interactive installation or repair, hand off to:
|
|
184
|
+
|
|
185
|
+
- `configure-toolset`
|
|
186
|
+
|
|
187
|
+
If the next step is overlap cleanup or catalog review, hand off to:
|
|
188
|
+
|
|
189
|
+
- `skill-stocktake`
|
|
190
|
+
|
|
191
|
+
If the next step is broader context trimming, hand off to:
|
|
192
|
+
|
|
193
|
+
- `strategic-compact`
|
|
194
|
+
|
|
195
|
+
## Output Format
|
|
196
|
+
|
|
197
|
+
Return the result in this order:
|
|
198
|
+
|
|
199
|
+
```text
|
|
200
|
+
STACK
|
|
201
|
+
- language/framework/runtime summary
|
|
202
|
+
|
|
203
|
+
DAILY
|
|
204
|
+
- always-loaded items with evidence
|
|
205
|
+
|
|
206
|
+
LIBRARY
|
|
207
|
+
- searchable/reference items with evidence
|
|
208
|
+
|
|
209
|
+
INSTALL PLAN
|
|
210
|
+
- what should be installed, removed, or routed
|
|
211
|
+
|
|
212
|
+
VERIFICATION
|
|
213
|
+
- checks run and remaining gaps
|
|
214
|
+
```
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic-engineering
|
|
3
|
+
description: Operate as an agentic engineer using eval-first execution, decomposition, and cost-aware model routing.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agentic Engineering
|
|
7
|
+
|
|
8
|
+
Use this skill for engineering workflows where AI agents perform most implementation work and humans enforce quality and risk controls.
|
|
9
|
+
|
|
10
|
+
## Operating Principles
|
|
11
|
+
|
|
12
|
+
1. Define completion criteria before execution.
|
|
13
|
+
2. Decompose work into agent-sized units.
|
|
14
|
+
3. Route model tiers by task complexity.
|
|
15
|
+
4. Measure with evals and regression checks.
|
|
16
|
+
|
|
17
|
+
## Eval-First Loop
|
|
18
|
+
|
|
19
|
+
1. Define capability eval and regression eval.
|
|
20
|
+
2. Run baseline and capture failure signatures.
|
|
21
|
+
3. Execute implementation.
|
|
22
|
+
4. Re-run evals and compare deltas.
|
|
23
|
+
|
|
24
|
+
## Task Decomposition
|
|
25
|
+
|
|
26
|
+
Apply the 15-minute unit rule:
|
|
27
|
+
- each unit should be independently verifiable
|
|
28
|
+
- each unit should have a single dominant risk
|
|
29
|
+
- each unit should expose a clear done condition
|
|
30
|
+
|
|
31
|
+
## Model Routing
|
|
32
|
+
|
|
33
|
+
- Haiku: classification, boilerplate transforms, narrow edits
|
|
34
|
+
- Sonnet: implementation and refactors
|
|
35
|
+
- Opus: architecture, root-cause analysis, multi-file invariants
|
|
36
|
+
|
|
37
|
+
## Session Strategy
|
|
38
|
+
|
|
39
|
+
- Continue session for closely-coupled units.
|
|
40
|
+
- Start fresh session after major phase transitions.
|
|
41
|
+
- Compact after milestone completion, not during active debugging.
|
|
42
|
+
|
|
43
|
+
## Review Focus for AI-Generated Code
|
|
44
|
+
|
|
45
|
+
Prioritize:
|
|
46
|
+
- invariants and edge cases
|
|
47
|
+
- error boundaries
|
|
48
|
+
- security and auth assumptions
|
|
49
|
+
- hidden coupling and rollout risk
|
|
50
|
+
|
|
51
|
+
Do not waste review cycles on style-only disagreements when automated format/lint already enforce style.
|
|
52
|
+
|
|
53
|
+
## Cost Discipline
|
|
54
|
+
|
|
55
|
+
Track per task:
|
|
56
|
+
- model
|
|
57
|
+
- token estimate
|
|
58
|
+
- retries
|
|
59
|
+
- wall-clock time
|
|
60
|
+
- success/failure
|
|
61
|
+
|
|
62
|
+
Escalate model tier only when lower tier fails with a clear reasoning gap.
|
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic-os
|
|
3
|
+
description: Build persistent multi-agent operating systems on Claude Code. Covers kernel architecture, specialist agents, slash commands, file-based memory, scheduled automation, and state management without external databases.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agentic OS
|
|
7
|
+
|
|
8
|
+
Treat Claude Code as a persistent runtime / operating system rather than a chat session. This skill codifies the architecture used by production agentic setups: a kernel config that routes tasks to specialist agents, persistent file-based memory, scheduled automation, and a JSON/markdown data layer.
|
|
9
|
+
|
|
10
|
+
## When to Activate
|
|
11
|
+
|
|
12
|
+
- Building a multi-agent workflow inside Claude Code
|
|
13
|
+
- Setting up persistent Claude Code automation that survives session restarts
|
|
14
|
+
- Creating a "personal OS" or "agentic OS" for recurring tasks
|
|
15
|
+
- User says "agentic OS", "personal OS", "multi-agent", "agent coordinator", "persistent agent"
|
|
16
|
+
- Structuring long-running projects where context must survive across sessions
|
|
17
|
+
|
|
18
|
+
## Architecture Overview
|
|
19
|
+
|
|
20
|
+
The Agentic OS has four layers. Each layer is a directory in your project root.
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
project-root/
|
|
24
|
+
├── CLAUDE.md # Kernel: identity, routing rules, agent registry
|
|
25
|
+
├── agents/ # Specialist agent definitions (markdown prompts)
|
|
26
|
+
├── .claude/commands/ # Slash commands: user-facing CLI
|
|
27
|
+
├── scripts/ # Daemon scripts: scheduled or event-driven tasks
|
|
28
|
+
└── data/ # State: JSON/markdown filesystem, no external DB
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Layer Responsibilities
|
|
32
|
+
|
|
33
|
+
| Layer | Purpose | Persistence |
|
|
34
|
+
|---|---|---|
|
|
35
|
+
| Kernel (`CLAUDE.md`) | Identity, routing, model policies, agent registry | Git-tracked |
|
|
36
|
+
| Agents (`agents/`) | Specialist identities with scoped tools and memory | Git-tracked |
|
|
37
|
+
| Commands (`.claude/commands/`) | User-facing slash commands (`/daily-sync`, `/outreach`) | Git-tracked |
|
|
38
|
+
| Scripts (`scripts/`) | Python/JS daemons triggered by cron or webhooks | Git-tracked |
|
|
39
|
+
| State (`data/`) | Append-only logs, project state, decision records | Git-ignored or tracked |
|
|
40
|
+
|
|
41
|
+
## The Kernel
|
|
42
|
+
|
|
43
|
+
`CLAUDE.md` is the kernel. It acts as the COO / orchestrator. Claude reads it at session start and uses it to route work.
|
|
44
|
+
|
|
45
|
+
### Kernel Structure
|
|
46
|
+
|
|
47
|
+
```markdown
|
|
48
|
+
# CLAUDE.md - Agentic OS Kernel
|
|
49
|
+
|
|
50
|
+
## Identity
|
|
51
|
+
You are the COO of [project-name]. You route tasks to specialist agents.
|
|
52
|
+
You never write code directly. You delegate to the right agent and synthesize results.
|
|
53
|
+
|
|
54
|
+
## Agent Registry
|
|
55
|
+
|
|
56
|
+
| Agent | Role | Trigger |
|
|
57
|
+
|---|---|---|
|
|
58
|
+
| @dev | Code, architecture, debugging | User says "build", "fix", "refactor" |
|
|
59
|
+
| @writer | Documentation, content, emails | User says "write", "draft", "blog" |
|
|
60
|
+
| @researcher | Research, analysis, fact-checking | User says "research", "analyze", "compare" |
|
|
61
|
+
| @ops | DevOps, deployment, infrastructure | User says "deploy", "CI", "server" |
|
|
62
|
+
|
|
63
|
+
## Routing Rules
|
|
64
|
+
1. Parse the user request for intent keywords
|
|
65
|
+
2. Match to the Agent Registry trigger column
|
|
66
|
+
3. Load the corresponding agent file from `agents/<name>.md`
|
|
67
|
+
4. Hand off execution with full context
|
|
68
|
+
5. Synthesize and present the result back to the user
|
|
69
|
+
|
|
70
|
+
## Model Policies
|
|
71
|
+
- Default model: use the repository or harness default.
|
|
72
|
+
- @dev tasks: prefer a higher-reasoning model for complex architecture.
|
|
73
|
+
- @researcher tasks: use the configured research-capable model and approved search tools.
|
|
74
|
+
- Cost ceiling: warn before exceeding the project's configured spend threshold.
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### Key Principle
|
|
78
|
+
|
|
79
|
+
The kernel should be **small and declarative**. Routing logic lives in plain markdown tables, not code. This makes the system inspectable and editable without debugging.
|
|
80
|
+
|
|
81
|
+
## Specialist Agents
|
|
82
|
+
|
|
83
|
+
Each agent is a standalone markdown file in `agents/`. Claude loads the relevant agent file when routing a task.
|
|
84
|
+
|
|
85
|
+
### Agent Definition Format
|
|
86
|
+
|
|
87
|
+
```markdown
|
|
88
|
+
# @dev - Software Engineer
|
|
89
|
+
|
|
90
|
+
## Identity
|
|
91
|
+
You are a senior software engineer. You write clean, tested, production-grade code.
|
|
92
|
+
You prefer simple solutions. You ask clarifying questions when requirements are ambiguous.
|
|
93
|
+
|
|
94
|
+
## Memory Scope
|
|
95
|
+
- Read `data/projects/<current-project>.md` for context
|
|
96
|
+
- Read `data/decisions/` for architectural decisions
|
|
97
|
+
- Append execution logs to `data/logs/<date>-@dev.md`
|
|
98
|
+
|
|
99
|
+
## Tool Access
|
|
100
|
+
- Full filesystem access within project root
|
|
101
|
+
- Git operations (status, diff, commit, branch)
|
|
102
|
+
- Test runner access
|
|
103
|
+
- MCP servers as configured in `.claude/mcp.json`
|
|
104
|
+
|
|
105
|
+
## Constraints
|
|
106
|
+
- Always write tests for new features
|
|
107
|
+
- Never commit directly to `main`; use feature branches
|
|
108
|
+
- Prefer editing existing files over creating new ones
|
|
109
|
+
- Keep functions under 50 lines when possible
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Multi-Agent Collaboration Pattern
|
|
113
|
+
|
|
114
|
+
When a task spans multiple agents, the kernel runs them sequentially or in parallel:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
User: "Build a landing page and write the launch blog post"
|
|
118
|
+
|
|
119
|
+
Kernel routing:
|
|
120
|
+
1. @dev - "Build a landing page with [requirements]"
|
|
121
|
+
2. @writer - "Write a launch blog post for [product] using the landing page copy"
|
|
122
|
+
3. Kernel synthesizes both outputs into a unified response
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
For parallel execution, use Claude Code's background task capability or shell scripts that invoke Claude Code with specific agent contexts.
|
|
126
|
+
|
|
127
|
+
## Commands and Daily Workflows
|
|
128
|
+
|
|
129
|
+
Slash commands are markdown files in `.claude/commands/`. They define reusable workflows.
|
|
130
|
+
|
|
131
|
+
### Command Structure
|
|
132
|
+
|
|
133
|
+
```markdown
|
|
134
|
+
# /daily-sync
|
|
135
|
+
|
|
136
|
+
Run the morning briefing:
|
|
137
|
+
|
|
138
|
+
1. Read `data/logs/last-sync.md` for context
|
|
139
|
+
2. Check project status: `git status`, pending PRs, CI health
|
|
140
|
+
3. Review `data/inbox/` for new tasks or decisions needed
|
|
141
|
+
4. Generate a summary of blockers, priorities, and next actions
|
|
142
|
+
5. Append the briefing to `data/logs/daily/<date>.md`
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Standard Command Set
|
|
146
|
+
|
|
147
|
+
| Command | Purpose |
|
|
148
|
+
|---|---|
|
|
149
|
+
| `/daily-sync` | Morning briefing: status, blockers, priorities |
|
|
150
|
+
| `/outreach` | Run outreach workflow (email, LinkedIn, etc.) |
|
|
151
|
+
| `/research <topic>` | Deep research with citation tracking |
|
|
152
|
+
| `/apply-jobs` | Tailor resume + cover letter for a target role |
|
|
153
|
+
| `/analytics` | Pull metrics from Stripe, GitHub, or custom sources |
|
|
154
|
+
| `/interview-prep` | Generate flashcards or mock interview questions |
|
|
155
|
+
| `/decision <topic>` | Log a decision with pros/cons and chosen path |
|
|
156
|
+
|
|
157
|
+
### Activating Commands
|
|
158
|
+
|
|
159
|
+
Place command files in `.claude/commands/<command-name>.md`. Claude Code auto-discovers them. Users invoke them with `/<command-name>`.
|
|
160
|
+
|
|
161
|
+
## Persistent Memory
|
|
162
|
+
|
|
163
|
+
Memory is file-based. No vector DB, no Redis, no PostgreSQL. JSON and markdown files in `data/` are the database.
|
|
164
|
+
|
|
165
|
+
### Memory Directory Structure
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
data/
|
|
169
|
+
├── daily-logs/ # Append-only daily activity logs
|
|
170
|
+
├── projects/ # Per-project context files
|
|
171
|
+
├── decisions/ # Architectural and business decisions (ADR format)
|
|
172
|
+
├── inbox/ # New tasks or ideas awaiting triage
|
|
173
|
+
├── contacts/ # People, companies, relationship notes
|
|
174
|
+
└── templates/ # Reusable prompts and formats
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
### Daily Log Format
|
|
178
|
+
|
|
179
|
+
```markdown
|
|
180
|
+
# 2026-04-22 - Daily Log
|
|
181
|
+
|
|
182
|
+
## Sessions
|
|
183
|
+
- 09:00 - Session 1: Refactored auth module (@dev)
|
|
184
|
+
- 11:30 - Session 2: Drafted investor update (@writer)
|
|
185
|
+
|
|
186
|
+
## Decisions
|
|
187
|
+
- Switched from JWT to session cookies (see `data/decisions/2026-04-22-auth.md`)
|
|
188
|
+
|
|
189
|
+
## Blockers
|
|
190
|
+
- Waiting on API key from vendor (follow up 2026-04-24)
|
|
191
|
+
|
|
192
|
+
## Next Actions
|
|
193
|
+
- [ ] Merge auth refactor PR
|
|
194
|
+
- [ ] Send investor update for review
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Auto-Reflection Pattern
|
|
198
|
+
|
|
199
|
+
At the end of each session, the kernel appends a reflection:
|
|
200
|
+
|
|
201
|
+
```markdown
|
|
202
|
+
## Reflection - Session 3
|
|
203
|
+
- What worked: Parallel agent execution saved 20 minutes
|
|
204
|
+
- What didn't: @researcher hit a paywalled source, need better source ranking
|
|
205
|
+
- What to change: Add `source-tier` field to research notes (A/B/C credibility)
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
This creates a feedback loop that improves the system over time without code changes.
|
|
209
|
+
|
|
210
|
+
## Scheduled Automation
|
|
211
|
+
|
|
212
|
+
Agentic OS tasks run on a schedule using external cron, not Claude Code's built-in cron (which dies when the session ends).
|
|
213
|
+
|
|
214
|
+
### macOS: LaunchAgent
|
|
215
|
+
|
|
216
|
+
```xml
|
|
217
|
+
<!-- ~/Library/LaunchAgents/com.agentic.daily-sync.plist -->
|
|
218
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
219
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" ...>
|
|
220
|
+
<plist version="1.0">
|
|
221
|
+
<dict>
|
|
222
|
+
<key>Label</key>
|
|
223
|
+
<string>com.agentic.daily-sync</string>
|
|
224
|
+
<key>ProgramArguments</key>
|
|
225
|
+
<array>
|
|
226
|
+
<string>/claude</string>
|
|
227
|
+
<string>--cwd</string>
|
|
228
|
+
<string>/path/to/project</string>
|
|
229
|
+
<string>--command</string>
|
|
230
|
+
<string>/daily-sync</string>
|
|
231
|
+
</array>
|
|
232
|
+
<key>StartCalendarInterval</key>
|
|
233
|
+
<dict>
|
|
234
|
+
<key>Hour</key>
|
|
235
|
+
<integer>8</integer>
|
|
236
|
+
<key>Minute</key>
|
|
237
|
+
<integer>0</integer>
|
|
238
|
+
</dict>
|
|
239
|
+
<key>StandardOutPath</key>
|
|
240
|
+
<string>/tmp/agentic-daily-sync.log</string>
|
|
241
|
+
</dict>
|
|
242
|
+
</plist>
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### Linux: systemd Timer
|
|
246
|
+
|
|
247
|
+
```ini
|
|
248
|
+
# ~/.config/systemd/user/agentic-daily-sync.service
|
|
249
|
+
[Unit]
|
|
250
|
+
Description=Agentic OS Daily Sync
|
|
251
|
+
|
|
252
|
+
[Service]
|
|
253
|
+
Type=oneshot
|
|
254
|
+
ExecStart=/usr/local/bin/claude --cwd /path/to/project --command /daily-sync
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
```ini
|
|
258
|
+
# ~/.config/systemd/user/agentic-daily-sync.timer
|
|
259
|
+
[Unit]
|
|
260
|
+
Description=Run daily sync every morning
|
|
261
|
+
|
|
262
|
+
[Timer]
|
|
263
|
+
OnCalendar=*-*-* 8:00:00
|
|
264
|
+
Persistent=true
|
|
265
|
+
|
|
266
|
+
[Install]
|
|
267
|
+
WantedBy=timers.target
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### Cross-Platform: pm2
|
|
271
|
+
|
|
272
|
+
```bash
|
|
273
|
+
# ecosystem.config.js
|
|
274
|
+
module.exports = {
|
|
275
|
+
apps: [{
|
|
276
|
+
name: 'agentic-daily-sync',
|
|
277
|
+
script: 'claude',
|
|
278
|
+
args: '--cwd /path/to/project --command /daily-sync',
|
|
279
|
+
cron_restart: '0 8 * * *',
|
|
280
|
+
autorestart: false
|
|
281
|
+
}]
|
|
282
|
+
};
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
## Data Layer
|
|
286
|
+
|
|
287
|
+
The data layer is your filesystem. Use JSON for structured data and markdown for narrative content.
|
|
288
|
+
|
|
289
|
+
### JSON for Structured State
|
|
290
|
+
|
|
291
|
+
```json
|
|
292
|
+
// data/projects/website-v2.json
|
|
293
|
+
{
|
|
294
|
+
"name": "Website v2",
|
|
295
|
+
"status": "in-progress",
|
|
296
|
+
"milestone": "beta-launch",
|
|
297
|
+
"agents_involved": ["@dev", "@writer"],
|
|
298
|
+
"files": {
|
|
299
|
+
"spec": "docs/website-v2-spec.md",
|
|
300
|
+
"design": "designs/website-v2.fig"
|
|
301
|
+
},
|
|
302
|
+
"metrics": {
|
|
303
|
+
"commits": 47,
|
|
304
|
+
"last_session": "2026-04-22T11:30:00Z"
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### Markdown for Narrative
|
|
310
|
+
|
|
311
|
+
Use markdown for anything a human reads: decisions, logs, research notes, contact records.
|
|
312
|
+
|
|
313
|
+
### Schema Evolution
|
|
314
|
+
|
|
315
|
+
Never rename existing fields. Add new fields and mark old ones deprecated:
|
|
316
|
+
|
|
317
|
+
```json
|
|
318
|
+
{
|
|
319
|
+
"name": "Website v2",
|
|
320
|
+
"status": "in-progress",
|
|
321
|
+
"milestone": "beta-launch",
|
|
322
|
+
"_deprecated_priority": "high",
|
|
323
|
+
"priority_v2": { "level": "high", "rationale": "Blocks investor demo" }
|
|
324
|
+
}
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
This keeps historical data readable without migration scripts.
|
|
328
|
+
|
|
329
|
+
## Anti-Patterns
|
|
330
|
+
|
|
331
|
+
### Monolithic Single Agent
|
|
332
|
+
|
|
333
|
+
```markdown
|
|
334
|
+
# BAD - One agent does everything
|
|
335
|
+
You are a full-stack developer, writer, researcher, and DevOps engineer.
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
Split into specialist agents. The kernel handles routing.
|
|
339
|
+
|
|
340
|
+
### Stateless Sessions
|
|
341
|
+
|
|
342
|
+
```markdown
|
|
343
|
+
# BAD - No memory between sessions
|
|
344
|
+
Starting fresh every time Claude Code opens.
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
Always read `data/` at session start and write back at session end.
|
|
348
|
+
|
|
349
|
+
### Hardcoded Credentials
|
|
350
|
+
|
|
351
|
+
```markdown
|
|
352
|
+
# BAD - API keys in agent files or CLAUDE.md
|
|
353
|
+
Your OpenAI API key is sk-xxxxxxxx
|
|
354
|
+
```
|
|
355
|
+
|
|
356
|
+
Use environment variables or a `.env` file loaded by scripts. Agents reference `process.env.API_KEY`.
|
|
357
|
+
|
|
358
|
+
### External Database for Simple State
|
|
359
|
+
|
|
360
|
+
```markdown
|
|
361
|
+
# BAD - PostgreSQL for a solo user's agentic OS
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
Use JSON/markdown files until you have multiple concurrent users or GBs of data.
|
|
365
|
+
|
|
366
|
+
### Over-Engineered Routing
|
|
367
|
+
|
|
368
|
+
```markdown
|
|
369
|
+
# BAD - Routing logic in code instead of markdown tables
|
|
370
|
+
if (intent.includes('deploy')) { agent = opsAgent; }
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
Keep routing declarative in `CLAUDE.md` markdown tables. It is inspectable, editable, and debuggable.
|
|
374
|
+
|
|
375
|
+
## Best Practices
|
|
376
|
+
|
|
377
|
+
- [ ] `CLAUDE.md` is under 200 lines and fits in context window
|
|
378
|
+
- [ ] Each agent file is under 100 lines and focused on one domain
|
|
379
|
+
- [ ] `data/` is git-ignored for sensitive logs, git-tracked for decisions and specs
|
|
380
|
+
- [ ] Commands use imperative names: `/daily-sync`, not `/run-daily-sync`
|
|
381
|
+
- [ ] Logs are append-only; never edit past daily logs
|
|
382
|
+
- [ ] Every agent has a `Memory Scope` section defining what files it reads
|
|
383
|
+
- [ ] Reflections are written at the end of every session
|
|
384
|
+
- [ ] Scheduled tasks use external cron (LaunchAgent, systemd, pm2), not Claude Code's session cron
|
|
385
|
+
- [ ] Cost tracking: log API spend per session in `data/logs/<date>-costs.json`
|
|
386
|
+
- [ ] One project = one Agentic OS. Do not share a single `CLAUDE.md` across unrelated projects.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ai-first-engineering
|
|
3
|
+
description: Engineering operating model for teams where AI agents generate a large share of implementation output.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# AI-First Engineering
|
|
7
|
+
|
|
8
|
+
Use this skill when designing process, reviews, and architecture for teams shipping with AI-assisted code generation.
|
|
9
|
+
|
|
10
|
+
## Process Shifts
|
|
11
|
+
|
|
12
|
+
1. Planning quality matters more than typing speed.
|
|
13
|
+
2. Eval coverage matters more than anecdotal confidence.
|
|
14
|
+
3. Review focus shifts from syntax to system behavior.
|
|
15
|
+
|
|
16
|
+
## Architecture Requirements
|
|
17
|
+
|
|
18
|
+
Prefer architectures that are agent-friendly:
|
|
19
|
+
- explicit boundaries
|
|
20
|
+
- stable contracts
|
|
21
|
+
- typed interfaces
|
|
22
|
+
- deterministic tests
|
|
23
|
+
|
|
24
|
+
Avoid implicit behavior spread across hidden conventions.
|
|
25
|
+
|
|
26
|
+
## Code Review in AI-First Teams
|
|
27
|
+
|
|
28
|
+
Review for:
|
|
29
|
+
- behavior regressions
|
|
30
|
+
- security assumptions
|
|
31
|
+
- data integrity
|
|
32
|
+
- failure handling
|
|
33
|
+
- rollout safety
|
|
34
|
+
|
|
35
|
+
Minimize time spent on style issues already covered by automation.
|
|
36
|
+
|
|
37
|
+
## Hiring and Evaluation Signals
|
|
38
|
+
|
|
39
|
+
Strong AI-first engineers:
|
|
40
|
+
- decompose ambiguous work cleanly
|
|
41
|
+
- define measurable acceptance criteria
|
|
42
|
+
- produce high-signal prompts and evals
|
|
43
|
+
- enforce risk controls under delivery pressure
|
|
44
|
+
|
|
45
|
+
## Testing Standard
|
|
46
|
+
|
|
47
|
+
Raise testing bar for generated code:
|
|
48
|
+
- required regression coverage for touched domains
|
|
49
|
+
- explicit edge-case assertions
|
|
50
|
+
- integration checks for interface boundaries
|