Add OpenClaw local and Mac mini setup skill

This commit is contained in:
Toby
2026-02-21 09:54:14 -05:00
parent 2639af6531
commit b3be11e88e
17 changed files with 672 additions and 0 deletions
@@ -0,0 +1,32 @@
---
name: convex-backend
description: Build reactive backends with Convex functions, schema validation, auth integration, and deployment workflows.
license: MIT
metadata:
author: devops-skills
version: "1.0"
---
# Convex Backend
Use Convex to build type-safe backend logic with realtime data sync.
## Quick Start
```bash
npm install convex
npx convex dev
npx convex deploy
```
## Implementation Tips
- Define schema and validation before writing functions.
- Keep mutations idempotent where possible.
- Use auth identity checks in every privileged query/mutation.
- Add indexing early for high-read collections.
## Related Skills
- [firebase-app-platform](../firebase-app-platform/) - Alternative managed backend
- [agent-observability](../../../devops/ai/agent-observability/) - Instrument AI-driven backend flows
@@ -0,0 +1,33 @@
---
name: firebase-app-platform
description: Build and operate apps on Firebase using Auth, Firestore, Cloud Functions, and Hosting.
license: MIT
metadata:
author: devops-skills
version: "1.0"
---
# Firebase App Platform
Ship mobile and web backends with Firebase managed services.
## Core Setup
```bash
npm install -g firebase-tools
firebase login
firebase init
firebase deploy
```
## Security and Scale
- Write strict Firestore security rules first.
- Separate environments by Firebase project.
- Enable budget alerts and quota monitoring.
- Move privileged logic into Cloud Functions.
## Related Skills
- [gcp-cloud-functions](../../cloud-gcp/gcp-cloud-functions/) - Function runtime patterns
- [vercel-deployments](../vercel-deployments/) - Frontend deployment option
@@ -0,0 +1,34 @@
---
name: vercel-deployments
description: Deploy frontend and full-stack apps on Vercel with previews, edge functions, and environment promotion.
license: MIT
metadata:
author: devops-skills
version: "1.0"
---
# Vercel Deployments
Ship web apps quickly with preview environments and managed edge infrastructure.
## Core Workflow
```bash
npm i -g vercel
vercel login
vercel link
vercel
vercel --prod
```
## Production Guardrails
- Require preview checks before merge.
- Separate preview and production environment variables.
- Use branch protection with required deployment status.
- Monitor function duration and cold start behavior.
## Related Skills
- [github-actions](../../../devops/ci-cd/github-actions/) - Automated deployment gates
- [cloudflare-pages](../../cloudflare/cloudflare-pages/) - Alternative edge hosting