gitextract_f89akwzt/ ├── .gitignore ├── README.md ├── contributing.md └── skills/ ├── .curated/ │ ├── aspnet-core/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── _sections.md │ │ ├── apis-minimal-and-controllers.md │ │ ├── data-state-and-services.md │ │ ├── program-and-pipeline.md │ │ ├── realtime-grpc-and-background-work.md │ │ ├── security-and-identity.md │ │ ├── source-map.md │ │ ├── stack-selection.md │ │ ├── testing-performance-and-operations.md │ │ ├── ui-blazor.md │ │ ├── ui-mvc.md │ │ ├── ui-razor-pages.md │ │ └── versioning-and-upgrades.md │ ├── chatgpt-apps/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ ├── app-archetypes.md │ │ │ ├── apps-sdk-docs-workflow.md │ │ │ ├── interactive-state-sync-patterns.md │ │ │ ├── repo-contract-and-validation.md │ │ │ ├── search-fetch-standard.md │ │ │ ├── upstream-example-workflow.md │ │ │ └── window-openai-patterns.md │ │ └── scripts/ │ │ └── scaffold_node_ext_apps.mjs │ ├── cloudflare-deploy/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── agents-sdk/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── ai-gateway/ │ │ │ ├── README.md │ │ │ ├── configuration.md │ │ │ ├── dynamic-routing.md │ │ │ ├── features.md │ │ │ ├── sdk-integration.md │ │ │ └── troubleshooting.md │ │ ├── ai-search/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── analytics-engine/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── api/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── api-shield/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── argo-smart-routing/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── bindings/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── bot-management/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── browser-rendering/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── c3/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── cache-reserve/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── containers/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── cron-triggers/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── d1/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── ddos/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── do-storage/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ ├── patterns.md │ │ │ └── testing.md │ │ ├── durable-objects/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── email-routing/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── email-workers/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── hyperdrive/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── images/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── kv/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── miniflare/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── network-interconnect/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── observability/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── pages/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── pages-functions/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── pipelines/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── pulumi/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── queues/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── r2/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── r2-data-catalog/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── r2-sql/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── realtime-sfu/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── realtimekit/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── sandbox/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── secrets-store/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── smart-placement/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── snippets/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── spectrum/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── static-assets/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── stream/ │ │ │ ├── README.md │ │ │ ├── api-live.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── tail-workers/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── terraform/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── tunnel/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ ├── networking.md │ │ │ └── patterns.md │ │ ├── turn/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── turnstile/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── vectorize/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── waf/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── web-analytics/ │ │ │ ├── README.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ ├── integration.md │ │ │ └── patterns.md │ │ ├── workerd/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workers/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── frameworks.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workers-ai/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workers-for-platforms/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workers-playground/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workers-vpc/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── workflows/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ ├── wrangler/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── auth.md │ │ │ ├── configuration.md │ │ │ ├── gotchas.md │ │ │ └── patterns.md │ │ └── zaraz/ │ │ ├── IMPLEMENTATION_SUMMARY.md │ │ ├── README.md │ │ ├── api.md │ │ ├── configuration.md │ │ ├── gotchas.md │ │ └── patterns.md │ ├── develop-web-game/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ └── action_payloads.json │ │ └── scripts/ │ │ └── web_game_playwright_client.js │ ├── doc/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ └── render_docx.py │ ├── figma/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── figma-mcp-config.md │ │ └── figma-tools-and-prompts.md │ ├── figma-implement-design/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── gh-address-comments/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ └── fetch_comments.py │ ├── gh-fix-ci/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ └── inspect_pr_checks.py │ ├── imagegen/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ ├── cli.md │ │ │ ├── codex-network.md │ │ │ ├── image-api.md │ │ │ ├── prompting.md │ │ │ └── sample-prompts.md │ │ └── scripts/ │ │ └── image_gen.py │ ├── jupyter-notebook/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── assets/ │ │ │ ├── experiment-template.ipynb │ │ │ └── tutorial-template.ipynb │ │ ├── references/ │ │ │ ├── experiment-patterns.md │ │ │ ├── notebook-structure.md │ │ │ ├── quality-checklist.md │ │ │ └── tutorial-patterns.md │ │ └── scripts/ │ │ └── new_notebook.py │ ├── linear/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── netlify-deploy/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── cli-commands.md │ │ ├── deployment-patterns.md │ │ └── netlify-toml.md │ ├── notion-knowledge-capture/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── evaluations/ │ │ │ ├── README.md │ │ │ ├── conversation-to-wiki.json │ │ │ └── decision-record.json │ │ ├── examples/ │ │ │ ├── conversation-to-faq.md │ │ │ ├── decision-capture.md │ │ │ └── how-to-guide.md │ │ └── reference/ │ │ ├── database-best-practices.md │ │ ├── decision-log-database.md │ │ ├── documentation-database.md │ │ ├── faq-database.md │ │ ├── how-to-guide-database.md │ │ ├── learning-database.md │ │ └── team-wiki-database.md │ ├── notion-meeting-intelligence/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── evaluations/ │ │ │ ├── README.md │ │ │ ├── decision-meeting-prep.json │ │ │ └── status-meeting-prep.json │ │ ├── examples/ │ │ │ ├── customer-meeting.md │ │ │ ├── executive-review.md │ │ │ ├── project-decision.md │ │ │ └── sprint-planning.md │ │ └── reference/ │ │ ├── brainstorming-template.md │ │ ├── decision-meeting-template.md │ │ ├── one-on-one-template.md │ │ ├── retrospective-template.md │ │ ├── sprint-planning-template.md │ │ ├── status-update-template.md │ │ └── template-selection-guide.md │ ├── notion-research-documentation/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── evaluations/ │ │ │ ├── README.md │ │ │ ├── basic-research.json │ │ │ └── research-to-database.json │ │ ├── examples/ │ │ │ ├── competitor-analysis.md │ │ │ ├── market-research.md │ │ │ ├── technical-investigation.md │ │ │ └── trip-planning.md │ │ └── reference/ │ │ ├── advanced-search.md │ │ ├── citations.md │ │ ├── comparison-format.md │ │ ├── comparison-template.md │ │ ├── comprehensive-report-format.md │ │ ├── comprehensive-report-template.md │ │ ├── format-selection-guide.md │ │ ├── quick-brief-format.md │ │ ├── quick-brief-template.md │ │ ├── research-summary-format.md │ │ └── research-summary-template.md │ ├── notion-spec-to-implementation/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── evaluations/ │ │ │ ├── README.md │ │ │ ├── basic-spec-implementation.json │ │ │ └── spec-to-tasks.json │ │ ├── examples/ │ │ │ ├── api-feature.md │ │ │ ├── database-migration.md │ │ │ └── ui-component.md │ │ └── reference/ │ │ ├── milestone-summary-template.md │ │ ├── progress-tracking.md │ │ ├── progress-update-template.md │ │ ├── quick-implementation-plan.md │ │ ├── spec-parsing.md │ │ ├── standard-implementation-plan.md │ │ ├── task-creation-template.md │ │ └── task-creation.md │ ├── openai-docs/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── gpt-5p4-prompting-guide.md │ │ ├── latest-model.md │ │ └── upgrading-to-gpt-5p4.md │ ├── pdf/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── playwright/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ ├── cli.md │ │ │ └── workflows.md │ │ └── scripts/ │ │ └── playwright_cli.sh │ ├── playwright-interactive/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── render-deploy/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── assets/ │ │ │ ├── docker.yaml │ │ │ ├── go-api.yaml │ │ │ ├── nextjs-postgres.yaml │ │ │ ├── node-express.yaml │ │ │ ├── python-django.yaml │ │ │ └── static-site.yaml │ │ └── references/ │ │ ├── blueprint-spec.md │ │ ├── codebase-analysis.md │ │ ├── configuration-guide.md │ │ ├── deployment-details.md │ │ ├── direct-creation.md │ │ ├── error-patterns.md │ │ ├── post-deploy-checks.md │ │ ├── runtimes.md │ │ ├── service-types.md │ │ └── troubleshooting-basics.md │ ├── screenshot/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ ├── ensure_macos_permissions.sh │ │ ├── macos_display_info.swift │ │ ├── macos_permissions.swift │ │ ├── macos_window_info.swift │ │ ├── take_screenshot.ps1 │ │ └── take_screenshot.py │ ├── security-best-practices/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── golang-general-backend-security.md │ │ ├── javascript-express-web-server-security.md │ │ ├── javascript-general-web-frontend-security.md │ │ ├── javascript-jquery-web-frontend-security.md │ │ ├── javascript-typescript-nextjs-web-server-security.md │ │ ├── javascript-typescript-react-web-frontend-security.md │ │ ├── javascript-typescript-vue-web-frontend-security.md │ │ ├── python-django-web-server-security.md │ │ ├── python-fastapi-web-server-security.md │ │ └── python-flask-web-server-security.md │ ├── security-ownership-map/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ └── neo4j-import.md │ │ └── scripts/ │ │ ├── build_ownership_map.py │ │ ├── community_maintainers.py │ │ ├── query_ownership.py │ │ └── run_ownership_map.py │ ├── security-threat-model/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ ├── prompt-template.md │ │ └── security-controls-and-assets.md │ ├── sentry/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ └── sentry_api.py │ ├── slides/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── assets/ │ │ │ └── pptxgenjs_helpers/ │ │ │ ├── code.js │ │ │ ├── image.js │ │ │ ├── index.js │ │ │ ├── latex.js │ │ │ ├── layout.js │ │ │ ├── layout_builders.js │ │ │ ├── svg.js │ │ │ ├── text.js │ │ │ └── util.js │ │ ├── references/ │ │ │ └── pptxgenjs-helpers.md │ │ └── scripts/ │ │ ├── create_montage.py │ │ ├── detect_font.py │ │ ├── ensure_raster_image.py │ │ ├── render_slides.py │ │ └── slides_test.py │ ├── sora/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ ├── cinematic-shots.md │ │ │ ├── cli.md │ │ │ ├── codex-network.md │ │ │ ├── prompting.md │ │ │ ├── sample-prompts.md │ │ │ ├── social-ads.md │ │ │ ├── troubleshooting.md │ │ │ └── video-api.md │ │ └── scripts/ │ │ └── sora.py │ ├── speech/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ ├── accessibility.md │ │ │ ├── audio-api.md │ │ │ ├── cli.md │ │ │ ├── codex-network.md │ │ │ ├── ivr.md │ │ │ ├── narration.md │ │ │ ├── prompting.md │ │ │ ├── sample-prompts.md │ │ │ ├── voice-directions.md │ │ │ └── voiceover.md │ │ └── scripts/ │ │ └── text_to_speech.py │ ├── spreadsheet/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ └── examples/ │ │ └── openpyxl/ │ │ ├── create_basic_spreadsheet.py │ │ ├── create_spreadsheet_with_styling.py │ │ ├── read_existing_spreadsheet.py │ │ └── styling_spreadsheet.py │ ├── transcribe/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── references/ │ │ │ └── api.md │ │ └── scripts/ │ │ └── transcribe_diarize.py │ ├── vercel-deploy/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── scripts/ │ │ └── deploy.sh │ ├── winui-app/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ ├── config.yaml │ │ └── references/ │ │ ├── _sections.md │ │ ├── accessibility-input-and-localization.md │ │ ├── build-run-and-launch-verification.md │ │ ├── community-toolkit-controls-and-helpers.md │ │ ├── controls-layout-and-adaptive-ui.md │ │ ├── foundation-environment-audit-and-remediation.md │ │ ├── foundation-setup-and-project-selection.md │ │ ├── foundation-template-first-recovery.md │ │ ├── foundation-winui-app-structure.md │ │ ├── motion-animations-and-polish.md │ │ ├── performance-diagnostics-and-responsiveness.md │ │ ├── sample-source-map.md │ │ ├── shell-navigation-and-windowing.md │ │ ├── styling-theming-materials-and-icons.md │ │ ├── testing-debugging-and-review-checklists.md │ │ └── windows-app-sdk-lifecycle-notifications-and-deployment.md │ └── yeet/ │ ├── LICENSE.txt │ ├── SKILL.md │ └── agents/ │ └── openai.yaml └── .system/ ├── openai-docs/ │ ├── LICENSE.txt │ ├── SKILL.md │ ├── agents/ │ │ └── openai.yaml │ └── references/ │ ├── gpt-5p4-prompting-guide.md │ ├── latest-model.md │ └── upgrading-to-gpt-5p4.md ├── skill-creator/ │ ├── LICENSE.txt │ ├── SKILL.md │ ├── agents/ │ │ └── openai.yaml │ ├── references/ │ │ └── openai_yaml.md │ └── scripts/ │ ├── generate_openai_yaml.py │ ├── init_skill.py │ └── quick_validate.py └── skill-installer/ ├── LICENSE.txt ├── SKILL.md ├── agents/ │ └── openai.yaml └── scripts/ ├── github_utils.py ├── install-skill-from-github.py └── list-skills.py