opencode-skills-collection 4.0.69 → 4.0.70
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/bundled-skills/.antigravity-install-manifest.json +39 -1
- package/bundled-skills/api-integration-architect/SKILL.md +241 -0
- package/bundled-skills/apify-generate-output-schema/SKILL.md +438 -0
- package/bundled-skills/apify-integration-development/SKILL.md +168 -0
- package/bundled-skills/apify-integration-development/references/ai-framework-package.md +158 -0
- package/bundled-skills/apify-integration-development/references/ai-harness-plugin.md +192 -0
- package/bundled-skills/apify-integration-development/references/sdk-integration.md +236 -0
- package/bundled-skills/apify-integration-development/references/workflow-automation.md +163 -0
- package/bundled-skills/architecture-review/README.md +42 -0
- package/bundled-skills/architecture-review/SKILL.md +77 -0
- package/bundled-skills/architecture-review/examples.md +11 -0
- package/bundled-skills/architecture-review/reference/best-practices.md +7 -0
- package/bundled-skills/architecture-review/reference/capabilities.md +20 -0
- package/bundled-skills/architecture-review/reference/fallbacks.md +11 -0
- package/bundled-skills/architecture-review/reference/graph.md +15 -0
- package/bundled-skills/architecture-review/reference/mcp.md +14 -0
- package/bundled-skills/architecture-review/reference/workflow.md +15 -0
- package/bundled-skills/architecture-review/templates/architecture-review.md +21 -0
- package/bundled-skills/code-review-sensei/SKILL.md +177 -0
- package/bundled-skills/codebase-onboarding/README.md +42 -0
- package/bundled-skills/codebase-onboarding/SKILL.md +77 -0
- package/bundled-skills/codebase-onboarding/examples.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/best-practices.md +7 -0
- package/bundled-skills/codebase-onboarding/reference/capabilities.md +20 -0
- package/bundled-skills/codebase-onboarding/reference/fallbacks.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/graph.md +15 -0
- package/bundled-skills/codebase-onboarding/reference/mcp.md +14 -0
- package/bundled-skills/codebase-onboarding/reference/workflow.md +15 -0
- package/bundled-skills/codebase-onboarding/templates/repository-onboarding.md +21 -0
- package/bundled-skills/connection-auth-rules/SKILL.md +199 -0
- package/bundled-skills/connection-auth-rules/fetch_schema.py +320 -0
- package/bundled-skills/dependency-analysis/README.md +42 -0
- package/bundled-skills/dependency-analysis/SKILL.md +76 -0
- package/bundled-skills/dependency-analysis/examples.md +11 -0
- package/bundled-skills/dependency-analysis/reference/best-practices.md +7 -0
- package/bundled-skills/dependency-analysis/reference/capabilities.md +20 -0
- package/bundled-skills/dependency-analysis/reference/fallbacks.md +11 -0
- package/bundled-skills/dependency-analysis/reference/graph.md +15 -0
- package/bundled-skills/dependency-analysis/reference/mcp.md +14 -0
- package/bundled-skills/dependency-analysis/reference/workflow.md +15 -0
- package/bundled-skills/dependency-analysis/templates/dependency-review.md +21 -0
- package/bundled-skills/devops-pipeline-builder/SKILL.md +200 -0
- package/bundled-skills/eas-app-stores/SKILL.md +197 -0
- package/bundled-skills/eas-app-stores/agents/openai.yaml +4 -0
- package/bundled-skills/eas-app-stores/references/app-store-metadata.md +497 -0
- package/bundled-skills/eas-app-stores/references/ios-app-store.md +376 -0
- package/bundled-skills/eas-app-stores/references/native-ios.md +167 -0
- package/bundled-skills/eas-app-stores/references/play-store.md +244 -0
- package/bundled-skills/eas-app-stores/references/testflight.md +62 -0
- package/bundled-skills/eas-app-stores/references/workflows.md +120 -0
- package/bundled-skills/eas-hosting/SKILL.md +448 -0
- package/bundled-skills/eas-hosting/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/SKILL.md +75 -0
- package/bundled-skills/eas-observe/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/references/metrics.md +98 -0
- package/bundled-skills/eas-observe/references/queries.md +403 -0
- package/bundled-skills/eas-observe/references/setup.md +476 -0
- package/bundled-skills/eas-observe/references/third-party.md +136 -0
- package/bundled-skills/eas-simulator/SKILL.md +251 -0
- package/bundled-skills/eas-simulator/agents/openai.yaml +4 -0
- package/bundled-skills/eas-simulator/references/controllers.md +135 -0
- package/bundled-skills/eas-simulator/references/run-your-app.md +240 -0
- package/bundled-skills/eas-simulator/references/troubleshooting.md +47 -0
- package/bundled-skills/eas-workflows/SKILL.md +119 -0
- package/bundled-skills/eas-workflows/agents/openai.yaml +4 -0
- package/bundled-skills/eas-workflows/scripts/fetch.js +109 -0
- package/bundled-skills/expo-animation/LICENSE +21 -0
- package/bundled-skills/expo-animation/RECIPES.md +385 -0
- package/bundled-skills/expo-animation/SKILL.md +295 -0
- package/bundled-skills/expo-animation/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/SKILL.md +178 -0
- package/bundled-skills/fact-check-x-unified/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/references/acceptance-criteria.md +44 -0
- package/bundled-skills/fact-check-x-unified/references/contracts.md +39 -0
- package/bundled-skills/fact-check-x-unified/scripts/common.py +31 -0
- package/bundled-skills/fact-check-x-unified/scripts/fact_check_x.py +1832 -0
- package/bundled-skills/fact-check-x-unified/scripts/trusted_search_config.py +324 -0
- package/bundled-skills/fact-check-x-unified/tests/anchor_downgrade_test.py +90 -0
- package/bundled-skills/fact-check-x-unified/tests/multi_platform_test.py +369 -0
- package/bundled-skills/fact-check-x-unified/tests/smoke_test.py +740 -0
- package/bundled-skills/fact-check-x-unified/tests/stage_checkpoint_test.py +103 -0
- package/bundled-skills/fact-check-x-unified/tests/trusted_search_config_test.py +156 -0
- package/bundled-skills/gpt-taste/SKILL.md +8 -1
- package/bundled-skills/hf-cli/SKILL.md +263 -0
- package/bundled-skills/huggingface-community-evals/SKILL.md +228 -0
- package/bundled-skills/huggingface-community-evals/examples/.env.example +3 -0
- package/bundled-skills/huggingface-community-evals/examples/USAGE_EXAMPLES.md +101 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_eval_uv.py +104 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_vllm_uv.py +306 -0
- package/bundled-skills/huggingface-community-evals/scripts/lighteval_vllm_uv.py +297 -0
- package/bundled-skills/huggingface-datasets/SKILL.md +130 -0
- package/bundled-skills/jev-social/SKILL.md +182 -0
- package/bundled-skills/longbridge-derivatives/SKILL.md +117 -0
- package/bundled-skills/longbridge-derivatives/references/option.md +36 -0
- package/bundled-skills/longbridge-derivatives/references/options-advanced.md +101 -0
- package/bundled-skills/longbridge-derivatives/references/options-pnl.md +74 -0
- package/bundled-skills/longbridge-derivatives/references/options-strategy.md +82 -0
- package/bundled-skills/longbridge-derivatives/references/options-volatility.md +70 -0
- package/bundled-skills/longbridge-derivatives/references/warrant.md +12 -0
- package/bundled-skills/longbridge-quant/SKILL.md +151 -0
- package/bundled-skills/longbridge-quant/references/correlation.md +51 -0
- package/bundled-skills/longbridge-quant/references/execution-model.md +68 -0
- package/bundled-skills/longbridge-quant/references/factor-research.md +95 -0
- package/bundled-skills/longbridge-quant/references/factor-screen.md +101 -0
- package/bundled-skills/longbridge-quant/references/hedging.md +136 -0
- package/bundled-skills/longbridge-quant/references/ml-strategy.md +77 -0
- package/bundled-skills/longbridge-quant/references/multifactor.md +68 -0
- package/bundled-skills/longbridge-quant/references/pairs-trading.md +61 -0
- package/bundled-skills/longbridge-quant/references/quant-cli.md +133 -0
- package/bundled-skills/longbridge-quant/references/quant-stats.md +150 -0
- package/bundled-skills/longbridge-quant/references/seasonality.md +50 -0
- package/bundled-skills/longbridge-quant/references/strategy-optimizer.md +68 -0
- package/bundled-skills/longbridge-quant/references/volatility-strategy.md +52 -0
- package/bundled-skills/longbridge-research/SKILL.md +187 -0
- package/bundled-skills/longbridge-research/references/company-profile.md +96 -0
- package/bundled-skills/longbridge-research/references/company-tearsheet.md +82 -0
- package/bundled-skills/longbridge-research/references/competitive-analysis.md +81 -0
- package/bundled-skills/longbridge-research/references/consensus.md +92 -0
- package/bundled-skills/longbridge-research/references/coverage-initiation.md +76 -0
- package/bundled-skills/longbridge-research/references/defi-yield.md +60 -0
- package/bundled-skills/longbridge-research/references/finance-calendar.md +165 -0
- package/bundled-skills/longbridge-research/references/financial-planning.md +77 -0
- package/bundled-skills/longbridge-research/references/forecast-eps.md +39 -0
- package/bundled-skills/longbridge-research/references/fund-holder.md +44 -0
- package/bundled-skills/longbridge-research/references/hkipo-analysis.md +101 -0
- package/bundled-skills/longbridge-research/references/industry-peers.md +46 -0
- package/bundled-skills/longbridge-research/references/industry-rank.md +62 -0
- package/bundled-skills/longbridge-research/references/insider-trades.md +48 -0
- package/bundled-skills/longbridge-research/references/institution-rating.md +62 -0
- package/bundled-skills/longbridge-research/references/investment-ideas.md +69 -0
- package/bundled-skills/longbridge-research/references/investment-proposal.md +95 -0
- package/bundled-skills/longbridge-research/references/investors.md +87 -0
- package/bundled-skills/longbridge-research/references/onchain.md +70 -0
- package/bundled-skills/longbridge-research/references/post-investment.md +76 -0
- package/bundled-skills/longbridge-research/references/shareholder.md +72 -0
- package/bundled-skills/longbridge-research/references/short-positions.md +50 -0
- package/bundled-skills/longbridge-research/references/short-trades.md +50 -0
- package/bundled-skills/longbridge-research/references/stock-research.md +61 -0
- package/bundled-skills/longbridge-research/references/thesis-tracker.md +64 -0
- package/bundled-skills/makepad-2-0-animation/SKILL.md +318 -0
- package/bundled-skills/makepad-2-0-animation/references/animator-reference.md +433 -0
- package/bundled-skills/makepad-2-0-dsl/SKILL.md +492 -0
- package/bundled-skills/makepad-2-0-dsl/references/dsl-syntax-reference.md +511 -0
- package/bundled-skills/makepad-2-0-dsl/references/extended-guide.md +56 -0
- package/bundled-skills/makepad-2-0-dsl/references/property-system.md +757 -0
- package/bundled-skills/makepad-2-0-events/SKILL.md +497 -0
- package/bundled-skills/makepad-2-0-events/references/event-patterns.md +802 -0
- package/bundled-skills/makepad-2-0-events/references/extended-guide.md +590 -0
- package/bundled-skills/makepad-2-0-layout/SKILL.md +499 -0
- package/bundled-skills/makepad-2-0-layout/references/extended-guide.md +243 -0
- package/bundled-skills/makepad-2-0-layout/references/layout-patterns.md +881 -0
- package/bundled-skills/makepad-2-0-widgets/SKILL.md +261 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-advanced.md +648 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-catalog.md +547 -0
- package/bundled-skills/meeting-distiller-pro/SKILL.md +120 -0
- package/bundled-skills/monte-carlo-analyze-root-cause/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-asset-health/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-context-detection/SKILL.md +170 -0
- package/bundled-skills/monte-carlo-context-detection/references/signal-definitions.md +46 -0
- package/bundled-skills/remotion-captions/SKILL.md +57 -0
- package/bundled-skills/remotion-captions/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-captions/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-captions/display-captions.md +190 -0
- package/bundled-skills/remotion-captions/import-srt-captions.md +73 -0
- package/bundled-skills/remotion-captions/transcribe-captions.md +70 -0
- package/bundled-skills/remotion-create/SKILL.md +106 -0
- package/bundled-skills/remotion-create/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-create/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-create/tailwind.md +11 -0
- package/bundled-skills/remotion-create/video-layout.md +9 -0
- package/bundled-skills/remotion-docs/SKILL.md +67 -0
- package/bundled-skills/remotion-docs/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-docs/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-interactivity/SKILL.md +270 -0
- package/bundled-skills/remotion-interactivity/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-interactivity/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/SKILL.md +48 -0
- package/bundled-skills/remotion-render/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-render/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/transparent-videos.md +106 -0
- package/bundled-skills/saas-pricing-strategist/SKILL.md +169 -0
- package/bundled-skills/score-eval/SKILL.md +35 -0
- package/bundled-skills/writing-guidelines/SKILL.md +60 -0
- package/package.json +1 -1
- package/skills_index.json +980 -3
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devops-pipeline-builder
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Design and implement CI/CD pipelines, Docker configurations, deployment
|
|
5
|
+
strategies, and infrastructure automation with production-ready patterns.
|
|
6
|
+
author: yundu-ai
|
|
7
|
+
tags:
|
|
8
|
+
- devops
|
|
9
|
+
- ci-cd
|
|
10
|
+
- docker
|
|
11
|
+
- kubernetes
|
|
12
|
+
- deployment
|
|
13
|
+
- automation
|
|
14
|
+
model: claude
|
|
15
|
+
source_repo: demo112/yunqu-ai-skills
|
|
16
|
+
source_type: community
|
|
17
|
+
source: community
|
|
18
|
+
date_added: '2026-09-21'
|
|
19
|
+
risk: unknown
|
|
20
|
+
---
|
|
21
|
+
## When to Use
|
|
22
|
+
- Use when this upstream workflow matches the user's stated goal.
|
|
23
|
+
- Use when the task requires the procedures documented in this skill.
|
|
24
|
+
|
|
25
|
+
# DevOps Pipeline Builder
|
|
26
|
+
|
|
27
|
+
You are a DevOps engineer who has built and maintained pipelines processing millions of deployments. You design for reliability, speed, and security — in that order.
|
|
28
|
+
|
|
29
|
+
## Decision Framework
|
|
30
|
+
|
|
31
|
+
Before writing any pipeline/config, establish:
|
|
32
|
+
|
|
33
|
+
1. **Project type**: Web app, API, library, microservice, monolith?
|
|
34
|
+
2. **Language/stack**: What build tools? What test framework?
|
|
35
|
+
3. **Deployment target**: Docker, K8s, VM, serverless, static?
|
|
36
|
+
4. **Environment strategy**: dev → staging → production?
|
|
37
|
+
5. **Compliance needs**: SOC2? HIPAA? Any audit requirements?
|
|
38
|
+
6. **Team size**: 1 person vs 50 devs changes the complexity budget
|
|
39
|
+
|
|
40
|
+
## Pipeline Patterns
|
|
41
|
+
|
|
42
|
+
### GitHub Actions — Standard Web App
|
|
43
|
+
|
|
44
|
+
```yaml
|
|
45
|
+
name: CI/CD Pipeline
|
|
46
|
+
|
|
47
|
+
on:
|
|
48
|
+
push:
|
|
49
|
+
branches: [main]
|
|
50
|
+
pull_request:
|
|
51
|
+
branches: [main]
|
|
52
|
+
|
|
53
|
+
env:
|
|
54
|
+
REGISTRY: ghcr.io
|
|
55
|
+
IMAGE_NAME: ${{ github.repository }}
|
|
56
|
+
|
|
57
|
+
jobs:
|
|
58
|
+
test:
|
|
59
|
+
runs-on: ubuntu-latest
|
|
60
|
+
steps:
|
|
61
|
+
- uses: actions/checkout@v4
|
|
62
|
+
- uses: actions/setup-node@v4
|
|
63
|
+
with:
|
|
64
|
+
node-version: '22'
|
|
65
|
+
cache: 'npm'
|
|
66
|
+
- run: npm ci
|
|
67
|
+
- run: npm test
|
|
68
|
+
- run: npm run lint
|
|
69
|
+
# Security audit
|
|
70
|
+
- run: npm audit --audit-level=high
|
|
71
|
+
|
|
72
|
+
build-and-push:
|
|
73
|
+
needs: test
|
|
74
|
+
if: github.ref == 'refs/heads/main'
|
|
75
|
+
runs-on: ubuntu-latest
|
|
76
|
+
permissions:
|
|
77
|
+
contents: read
|
|
78
|
+
packages: write
|
|
79
|
+
steps:
|
|
80
|
+
- uses: actions/checkout@v4
|
|
81
|
+
- uses: docker/login-action@v3
|
|
82
|
+
with:
|
|
83
|
+
registry: ${{ env.REGISTRY }}
|
|
84
|
+
username: ${{ github.actor }}
|
|
85
|
+
password: ${{ secrets.GITHUB_TOKEN }}
|
|
86
|
+
- uses: docker/build-push-action@v5
|
|
87
|
+
with:
|
|
88
|
+
context: .
|
|
89
|
+
push: true
|
|
90
|
+
tags: |
|
|
91
|
+
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
|
92
|
+
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
|
|
93
|
+
cache-from: type=gha
|
|
94
|
+
cache-to: type=gha,mode=max
|
|
95
|
+
|
|
96
|
+
deploy:
|
|
97
|
+
needs: build-and-push
|
|
98
|
+
runs-on: ubuntu-latest
|
|
99
|
+
environment: production
|
|
100
|
+
steps:
|
|
101
|
+
- run: |
|
|
102
|
+
# Add deployment commands here
|
|
103
|
+
echo "Deploying ${{ github.sha }} to production"
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Docker — Multi-stage Production Build
|
|
107
|
+
|
|
108
|
+
```dockerfile
|
|
109
|
+
# Stage 1: Build
|
|
110
|
+
FROM node:22-alpine AS builder
|
|
111
|
+
WORKDIR /app
|
|
112
|
+
COPY package*.json ./
|
|
113
|
+
RUN npm ci --ignore-scripts
|
|
114
|
+
COPY . .
|
|
115
|
+
RUN npm run build
|
|
116
|
+
|
|
117
|
+
# Stage 2: Production
|
|
118
|
+
FROM node:22-alpine AS runner
|
|
119
|
+
WORKDIR /app
|
|
120
|
+
RUN addgroup --system --gid 1001 appgroup && \
|
|
121
|
+
adduser --system --uid 1001 appuser
|
|
122
|
+
|
|
123
|
+
COPY --from=builder /app/dist ./dist
|
|
124
|
+
COPY --from=builder /app/node_modules ./node_modules
|
|
125
|
+
COPY --from=builder /app/package.json ./
|
|
126
|
+
|
|
127
|
+
USER appuser
|
|
128
|
+
EXPOSE 3000
|
|
129
|
+
HEALTHCHECK --interval=30s --timeout=3s \
|
|
130
|
+
CMD wget -qO- http://localhost:3000/health || exit 1
|
|
131
|
+
|
|
132
|
+
CMD ["node", "dist/server.js"]
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Deployment Strategy Decision Tree
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
Is zero-downtime required?
|
|
139
|
+
├── Yes
|
|
140
|
+
│ ├── Have load balancer/ingress?
|
|
141
|
+
│ │ ├── Yes → Blue/Green or Rolling Update
|
|
142
|
+
│ │ └── No → Canary with traffic splitting
|
|
143
|
+
│ └── Database migrations?
|
|
144
|
+
│ ├── Yes → Backward-compatible migrations first
|
|
145
|
+
│ └── No → Simple rolling update
|
|
146
|
+
└── No
|
|
147
|
+
├── Is it a dev/staging env?
|
|
148
|
+
│ └── Yes → Direct push, recreate containers
|
|
149
|
+
└── No → Why not? Add zero-downtime.
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## Common Anti-Patterns to Avoid
|
|
153
|
+
|
|
154
|
+
| Anti-Pattern | Why It's Bad | Fix |
|
|
155
|
+
|---|---|---|
|
|
156
|
+
| `latest` tag in production | Non-reproducible, untraceable | Use SHA or semver tags |
|
|
157
|
+
| Build secrets in Dockerfile | Visible in image layers | Multi-stage + build args |
|
|
158
|
+
| No health checks | Orchestration can't detect failures | Add HEALTHCHECK |
|
|
159
|
+
| Running as root | Security risk | Create non-root user |
|
|
160
|
+
| Giant Docker images | Slow pulls, attack surface | Multi-stage builds, alpine |
|
|
161
|
+
| No `.dockerignore` | Slow builds, leaked secrets | Create comprehensive `.dockerignore` |
|
|
162
|
+
| Hardcoded env vars | Inflexible, unsecretive | Runtime env injection |
|
|
163
|
+
| No pipeline caching | Slow CI, wasted compute | Cache layers and dependencies |
|
|
164
|
+
|
|
165
|
+
## Infrastructure Checklist
|
|
166
|
+
|
|
167
|
+
For any production deployment, verify:
|
|
168
|
+
|
|
169
|
+
- [ ] Health check endpoint exists and checks all dependencies
|
|
170
|
+
- [ ] Graceful shutdown (SIGTERM handling)
|
|
171
|
+
- [ ] Structured logging (JSON, correlation IDs)
|
|
172
|
+
- [ ] Secrets management (not in env vars in K8s, use sealed secrets/vault)
|
|
173
|
+
- [ ] Resource limits set (CPU/memory requests and limits)
|
|
174
|
+
- [ ] Monitoring dashboards configured
|
|
175
|
+
- [ ] Alert rules for: high error rate, high latency, low availability
|
|
176
|
+
- [ ] Rollback procedure documented and tested
|
|
177
|
+
- [ ] Database migration strategy (backward compatible)
|
|
178
|
+
- [ ] Rate limiting configured
|
|
179
|
+
|
|
180
|
+
## When Asked to Debug CI/CD
|
|
181
|
+
|
|
182
|
+
1. Check the **exact error message** — it usually tells you what's wrong
|
|
183
|
+
2. Verify **secret availability** — most CI failures are auth/secret issues
|
|
184
|
+
3. Check **dependency caching** — stale cache = weird errors
|
|
185
|
+
4. Verify **environment parity** — "works on my machine" = environment difference
|
|
186
|
+
5. Check **resource limits** — CI runners have memory/CPU limits
|
|
187
|
+
6. Look at **timing** — tests that fail intermittently = race condition or flaky test
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
## Examples
|
|
191
|
+
|
|
192
|
+
```text
|
|
193
|
+
User: Apply this skill to my current task.
|
|
194
|
+
Assistant: Follow the workflow in this skill, cite limitations, and ask before risky steps.
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## Limitations
|
|
198
|
+
|
|
199
|
+
- Imported upstream skill; verify credentials, permissions, and safety boundaries before execution.
|
|
200
|
+
- Does not replace environment-specific validation, testing, or maintainer review.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Curated upstream guidance for Eas App Stores; use when the workflow matches the user goal.
|
|
3
|
+
name: eas-app-stores
|
|
4
|
+
version: 1.1.0
|
|
5
|
+
license: MIT
|
|
6
|
+
source_repo: expo/skills
|
|
7
|
+
source_type: official
|
|
8
|
+
source: expo
|
|
9
|
+
date_added: '2026-09-21'
|
|
10
|
+
risk: unknown
|
|
11
|
+
---
|
|
12
|
+
## When to Use
|
|
13
|
+
- Use when this upstream workflow matches the user's stated goal.
|
|
14
|
+
- Use when the task requires the procedures documented in this skill.
|
|
15
|
+
|
|
16
|
+
# App Store Deployment
|
|
17
|
+
|
|
18
|
+
> **EAS service - costs apply.** Cloud builds use EAS plan resources, and EAS services have free-tier and paid-plan limits. Apple Developer and Google Play memberships are separate. Check https://expo.dev/pricing for the requested service.
|
|
19
|
+
|
|
20
|
+
This skill covers building and releasing iOS and Android apps with EAS: Expo and other React Native projects, plus existing native apps. EAS is a delivery service; native apps can use it without adding Expo or React Native to their runtime. The native setup walkthrough currently covers SwiftUI/UIKit on iOS.
|
|
21
|
+
|
|
22
|
+
## Choose the project path
|
|
23
|
+
|
|
24
|
+
- **SwiftUI/UIKit app with no React Native runtime:** read [references/native-ios.md] before changing its build configuration. Keep the Xcode project and Swift code as the app's source of truth. The Expo/React Native quick-start and development-client examples below do not apply to this path.
|
|
25
|
+
- **Native Android app with no React Native runtime:** preserve its existing native build setup. See [references/play-store.md] for submission; the Swift/iOS setup instructions do not apply. A dedicated native Android setup walkthrough is not yet included.
|
|
26
|
+
- **Expo/React Native app:** use the quick-start below, then the relevant store reference.
|
|
27
|
+
- **Adding React Native screens to an existing native app:** use `expo-brownfield` for that integration; return here for distribution.
|
|
28
|
+
|
|
29
|
+
Use the archive and icon checks in [references/native-ios.md] during initial native iOS setup, after changing versioning, bundle IDs, or icons, or when diagnosing a rejected upload. Routine releases follow the EAS build/submit flow and the processing and availability checks in [references/testflight.md]. A successful EAS build or a queued submission does not establish Apple acceptance, tester access, or an App Store release.
|
|
30
|
+
|
|
31
|
+
## References
|
|
32
|
+
|
|
33
|
+
Consult these resources as needed:
|
|
34
|
+
|
|
35
|
+
- ./references/workflows.md -- CI/CD workflows for automated store releases and PR previews
|
|
36
|
+
- ./references/testflight.md -- Submitting iOS builds to TestFlight for beta testing
|
|
37
|
+
- ./references/app-store-metadata.md -- Managing App Store metadata and ASO optimization
|
|
38
|
+
- ./references/play-store.md -- Submitting Android builds to Google Play Store
|
|
39
|
+
- ./references/ios-app-store.md -- iOS App Store submission and review process
|
|
40
|
+
- ./references/native-ios.md -- Native Swift/SwiftUI/UIKit setup, versioning, and archive verification without an Expo runtime
|
|
41
|
+
|
|
42
|
+
## Expo / React Native Quick Start
|
|
43
|
+
|
|
44
|
+
### Install EAS CLI
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install -g eas-cli
|
|
48
|
+
eas login
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Initialize EAS
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
npx eas-cli@latest init
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`eas init` links or creates the EAS project. Run `eas build:configure` to create build profiles in `eas.json`; preserve existing project and store identifiers when a release setup already exists.
|
|
58
|
+
|
|
59
|
+
## Build Commands
|
|
60
|
+
|
|
61
|
+
### Production Builds
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# iOS App Store build
|
|
65
|
+
npx eas-cli@latest build -p ios --profile production
|
|
66
|
+
|
|
67
|
+
# Android Play Store build
|
|
68
|
+
npx eas-cli@latest build -p android --profile production
|
|
69
|
+
|
|
70
|
+
# Both platforms
|
|
71
|
+
npx eas-cli@latest build --profile production
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Submit to Stores
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
# iOS: Build and submit to App Store Connect
|
|
78
|
+
npx eas-cli@latest build -p ios --profile production --auto-submit
|
|
79
|
+
|
|
80
|
+
# Android: Build and submit to Play Store
|
|
81
|
+
npx eas-cli@latest build -p android --profile production --auto-submit
|
|
82
|
+
|
|
83
|
+
# Expo / React Native shortcut for iOS TestFlight
|
|
84
|
+
npx testflight
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Web & API Route Hosting
|
|
88
|
+
|
|
89
|
+
Deploying an Expo website or Expo Router API routes to EAS Hosting (`npx expo export -p web` then `eas deploy`) is covered by the `eas-hosting` skill. This skill focuses on native app store releases.
|
|
90
|
+
|
|
91
|
+
## EAS Configuration
|
|
92
|
+
|
|
93
|
+
Example for an Expo / React Native project (native Swift profiles are in `references/native-ios.md`):
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"cli": {
|
|
98
|
+
"version": ">= 16.0.1",
|
|
99
|
+
"appVersionSource": "remote"
|
|
100
|
+
},
|
|
101
|
+
"build": {
|
|
102
|
+
"production": {
|
|
103
|
+
"autoIncrement": true,
|
|
104
|
+
"ios": {
|
|
105
|
+
"resourceClass": "m-medium"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"development": {
|
|
109
|
+
"developmentClient": true,
|
|
110
|
+
"distribution": "internal"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"submit": {
|
|
114
|
+
"production": {
|
|
115
|
+
"ios": {
|
|
116
|
+
"appleId": "your@email.com",
|
|
117
|
+
"ascAppId": "1234567890"
|
|
118
|
+
},
|
|
119
|
+
"android": {
|
|
120
|
+
"serviceAccountKeyPath": "./google-service-account.json",
|
|
121
|
+
"track": "internal"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Platform-Specific Guides
|
|
129
|
+
|
|
130
|
+
### iOS
|
|
131
|
+
|
|
132
|
+
- For native Swift apps, use the explicit build/submit flow in `references/native-ios.md`
|
|
133
|
+
- For Expo / React Native apps, `npx testflight` provides a quick TestFlight flow
|
|
134
|
+
- Configure Apple credentials via `eas credentials`
|
|
135
|
+
- See ./references/testflight.md for credential setup
|
|
136
|
+
- See ./references/ios-app-store.md for App Store submission
|
|
137
|
+
|
|
138
|
+
### Android
|
|
139
|
+
|
|
140
|
+
- Set up Google Play Console service account
|
|
141
|
+
- Configure tracks: internal → closed → open → production
|
|
142
|
+
- See ./references/play-store.md for detailed setup
|
|
143
|
+
|
|
144
|
+
## Automated Releases
|
|
145
|
+
|
|
146
|
+
EAS Workflows automate the build → submit → update pipeline for CI/CD. See ./references/workflows.md for store-release examples. To author or validate workflow YAML, use the `eas-workflows` skill - it works from the live workflow schema.
|
|
147
|
+
|
|
148
|
+
## Version Management
|
|
149
|
+
|
|
150
|
+
EAS manages version numbers automatically with `appVersionSource: "remote"`:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
# Check current versions
|
|
154
|
+
eas build:version:get
|
|
155
|
+
|
|
156
|
+
# Manually set version
|
|
157
|
+
eas build:version:set -p ios
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
The version-set command prompts for the value. When setting up or changing native iOS versioning, or diagnosing a duplicate build number, inspect the archived `CFBundleVersion`: the remote counter alone does not prove that Xcode used it.
|
|
161
|
+
|
|
162
|
+
## Monitoring
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
# List recent builds
|
|
166
|
+
eas build:list
|
|
167
|
+
|
|
168
|
+
# Check build status
|
|
169
|
+
eas build:view BUILD_ID
|
|
170
|
+
|
|
171
|
+
# Inspect submissions (verified with EAS CLI 23.2.0)
|
|
172
|
+
eas submit:list -p ios --json
|
|
173
|
+
eas submit:view SUBMISSION_ID --json
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Check the CLI version before interpreting a missing command: these submission commands are available in 23.2.0 but not in the tested 18.6.0 installation. A pinned `npx eas-cli@23.2.0` invocation can use them without changing the global installation. See `references/testflight.md` for live Apple status and retry guidance. Follow the returned log URLs when the JSON result omits the underlying failure. Report the exact build ID/version and the furthest verified release state.
|
|
177
|
+
|
|
178
|
+
## Submitting Feedback
|
|
179
|
+
If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:
|
|
180
|
+
```bash
|
|
181
|
+
npx --yes submit-expo-feedback@latest --category skills --subject "eas-app-stores" "<actionable feedback>"
|
|
182
|
+
```
|
|
183
|
+
Only submit when you have something specific and actionable to report. Include as much relevant context as possible.
|
|
184
|
+
If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
## Examples
|
|
188
|
+
|
|
189
|
+
```text
|
|
190
|
+
User: Apply this skill to my current task.
|
|
191
|
+
Assistant: Follow the workflow in this skill, cite limitations, and ask before risky steps.
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
## Limitations
|
|
195
|
+
|
|
196
|
+
- Imported upstream skill; verify credentials, permissions, and safety boundaries before execution.
|
|
197
|
+
- Does not replace environment-specific validation, testing, or maintainer review.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "EAS App Stores"
|
|
3
|
+
short_description: "Paid EAS service. Build and submit iOS and Android apps."
|
|
4
|
+
default_prompt: "Use $eas-app-stores to set up or verify EAS builds, TestFlight and store submissions, signing, versioning, and store metadata for iOS and Android apps: Expo and other React Native projects, plus existing native apps."
|