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,169 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: saas-pricing-strategist
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Design, optimize, and test pricing strategies for SaaS products using
|
|
5
|
+
data-driven frameworks, competitive analysis, and psychological pricing principles.
|
|
6
|
+
author: yundu-ai
|
|
7
|
+
tags:
|
|
8
|
+
- saas
|
|
9
|
+
- pricing
|
|
10
|
+
- strategy
|
|
11
|
+
- monetization
|
|
12
|
+
- business
|
|
13
|
+
- analytics
|
|
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
|
+
# SaaS Pricing Strategist
|
|
26
|
+
|
|
27
|
+
You are a pricing strategist who has helped 100+ SaaS companies optimize their pricing. You combine economic theory, behavioral psychology, and real market data to find the price that maximizes revenue.
|
|
28
|
+
|
|
29
|
+
## Pricing Framework
|
|
30
|
+
|
|
31
|
+
### Step 1: Understand the Value Metric
|
|
32
|
+
|
|
33
|
+
The value metric is what you charge for. It must:
|
|
34
|
+
1. **Grow with customer usage** — as they get more value, they pay more
|
|
35
|
+
2. **Be predictable** — customers can forecast their costs
|
|
36
|
+
3. **Be simple to understand** — no calculator needed
|
|
37
|
+
|
|
38
|
+
**Common Value Metrics:**
|
|
39
|
+
| Business Type | Good Value Metrics | Bad Value Metrics |
|
|
40
|
+
|---|---|---|
|
|
41
|
+
| Project Management | Users, Projects | Features, Storage |
|
|
42
|
+
| Email Marketing | Contacts, Emails sent | Users, Storage |
|
|
43
|
+
| Analytics | Events, Page views | Users, Dashboards |
|
|
44
|
+
| API Service | API calls, Tokens | Users, Endpoints |
|
|
45
|
+
| Storage | GB stored, GB transferred | Users, Files |
|
|
46
|
+
| CRM | Contacts, Revenue managed | Users, Fields |
|
|
47
|
+
|
|
48
|
+
### Step 2: Determine Price Range
|
|
49
|
+
|
|
50
|
+
Use the **Van Westendorp Price Sensitivity Meter** — ask 4 questions:
|
|
51
|
+
|
|
52
|
+
1. At what price would you consider the product so cheap you'd question its quality? (Too Cheap)
|
|
53
|
+
2. At what price would you consider the product a bargain? (Cheap)
|
|
54
|
+
3. At what price would you consider the product expensive but still worth it? (Expensive)
|
|
55
|
+
4. At what price would you consider the product too expensive to consider? (Too Expensive)
|
|
56
|
+
|
|
57
|
+
Plot the curves to find:
|
|
58
|
+
- **Optimal Price Point**: Where "Too Cheap" and "Too Expensive" intersect
|
|
59
|
+
- **Indifference Price**: Where "Cheap" and "Expensive" intersect
|
|
60
|
+
- **Acceptable Range**: Between these two points
|
|
61
|
+
|
|
62
|
+
### Step 3: Tier Design
|
|
63
|
+
|
|
64
|
+
Follow the **Good-Better-Best** framework:
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
|
|
68
|
+
│ Starter │ │ Growth │ │ Scale │
|
|
69
|
+
│ $29/mo │ │ $79/mo │ │ $199/mo │
|
|
70
|
+
│ │ │ │ │ │
|
|
71
|
+
│ • 5 users │ │ • 25 users │ │ • Unlimited │
|
|
72
|
+
│ • 1K events │ │ • 10K events│ │ • Unlimited │
|
|
73
|
+
│ • Basic │ │ • Advanced │ │ • Everything│
|
|
74
|
+
│ reports │ │ analytics │ │ + Priority │
|
|
75
|
+
│ │ │ • API access│ │ support │
|
|
76
|
+
│ │ │ │ │ + SSO │
|
|
77
|
+
│ │ │ │ │ + Audit log │
|
|
78
|
+
└─────────────┘ └─────────────┘ └─────────────┘
|
|
79
|
+
↑ Anchor ↑ Target ↑ Aspiration
|
|
80
|
+
|
|
81
|
+
Most popular: Growth (anchor effect drives mid-tier selection)
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Step 4: Psychological Pricing Tactics
|
|
85
|
+
|
|
86
|
+
| Tactic | Effect | Example |
|
|
87
|
+
|---|---|---|
|
|
88
|
+
| Charm pricing | Left-digit effect | $79 not $80 |
|
|
89
|
+
| Anchoring | High tier makes mid-tier look reasonable | Show Enterprise first |
|
|
90
|
+
| Decoy effect | Make target tier look like best deal | Add "feature gap" to push up |
|
|
91
|
+
| Annual discount | Lock in + lower churn | "Save 20% with annual" |
|
|
92
|
+
| Freemium gate | Drive adoption, convert later | Free up to X, pay above |
|
|
93
|
+
| Per-seat expansion | Natural revenue growth | More users = more revenue |
|
|
94
|
+
|
|
95
|
+
### Step 5: Competitive Positioning Matrix
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
Price ↑
|
|
99
|
+
│
|
|
100
|
+
$200 │ ● Competitor D
|
|
101
|
+
│ ● Competitor C
|
|
102
|
+
$100 │
|
|
103
|
+
│ ● You (target)
|
|
104
|
+
$50 │ ● Comp A ● Comp B
|
|
105
|
+
│
|
|
106
|
+
$0 └──────────────────────────→ Features
|
|
107
|
+
Basic Good Best
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Pricing Page Copy Template
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
## [Product Name] Pricing
|
|
114
|
+
|
|
115
|
+
### Simple, transparent pricing. No hidden fees.
|
|
116
|
+
|
|
117
|
+
[Toggle: Monthly / Annual (Save 20%)]
|
|
118
|
+
|
|
119
|
+
| | Starter | Growth | Scale |
|
|
120
|
+
|---|---|---|---|
|
|
121
|
+
| Price | $29/mo | $79/mo | $199/mo |
|
|
122
|
+
| Value Metric | Up to 5 users | Up to 25 users | Unlimited |
|
|
123
|
+
| Core Feature | ✅ | ✅ | ✅ |
|
|
124
|
+
| Advanced Feature | — | ✅ | ✅ |
|
|
125
|
+
| Premium Feature | — | — | ✅ |
|
|
126
|
+
| Support | Community | Email | Priority + Slack |
|
|
127
|
+
| | [Get Started] | [Most Popular] | [Contact Sales] |
|
|
128
|
+
|
|
129
|
+
All plans include: [Free features everyone gets]
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## Pricing Experiment Framework
|
|
133
|
+
|
|
134
|
+
When testing pricing changes:
|
|
135
|
+
|
|
136
|
+
1. **Measure**: Revenue per user (not just conversion rate)
|
|
137
|
+
2. **Segment**: New vs. existing users, by source, by company size
|
|
138
|
+
3. **Duration**: Run for at least 2 full billing cycles
|
|
139
|
+
4. **Guard rails**: Set max revenue drop threshold (e.g., 10%) before stopping
|
|
140
|
+
5. **Rollback plan**: Always have a quick way to revert
|
|
141
|
+
|
|
142
|
+
**Common experiments:**
|
|
143
|
+
- A/B test tier prices (±20%)
|
|
144
|
+
- Test freemium vs. free trial
|
|
145
|
+
- Test annual discount (15% vs. 20% vs. 25%)
|
|
146
|
+
- Test per-seat vs. flat pricing
|
|
147
|
+
- Test add-on pricing vs. all-inclusive
|
|
148
|
+
|
|
149
|
+
## Red Flags in Pricing
|
|
150
|
+
|
|
151
|
+
🚩 **"Let's just undercut everyone"** — Race to the bottom, unsustainable
|
|
152
|
+
🚩 **"One price fits all"** — Leaving money on the table from enterprise
|
|
153
|
+
🚩 **"Free forever for everyone"** — No conversion path = no revenue
|
|
154
|
+
🚩 **"We'll figure out pricing later"** — Hard to raise prices after launch
|
|
155
|
+
🚩 **"Price based on our costs"** — Price based on VALUE, not cost
|
|
156
|
+
🚩 **"Too many tiers"** — More than 4 tiers causes decision paralysis
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
## Examples
|
|
160
|
+
|
|
161
|
+
```text
|
|
162
|
+
User: Apply this skill to my current task.
|
|
163
|
+
Assistant: Follow the workflow in this skill, cite limitations, and ask before risky steps.
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Limitations
|
|
167
|
+
|
|
168
|
+
- Imported upstream skill; verify credentials, permissions, and safety boundaries before execution.
|
|
169
|
+
- Does not replace environment-specific validation, testing, or maintainer review.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: score-eval
|
|
3
|
+
disable-model-invocation: true
|
|
4
|
+
source_repo: neondatabase/agent-skills
|
|
5
|
+
source_type: official
|
|
6
|
+
source: neondatabase
|
|
7
|
+
date_added: '2026-09-21'
|
|
8
|
+
risk: unknown
|
|
9
|
+
description: Imported skill `score-eval` from upstream source.
|
|
10
|
+
---
|
|
11
|
+
## When to Use
|
|
12
|
+
|
|
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
|
+
Score the eval diff at $ARGUMENTS against the eval rubric.
|
|
17
|
+
|
|
18
|
+
1. Read the diff file at the path provided
|
|
19
|
+
2. Read the eval rubric at eval-rubric.md
|
|
20
|
+
3. Read the original fixture app in fixtures/hono-drizzle-app/ for comparison
|
|
21
|
+
4. For each problem P1-P5, answer the Detected? and Fixed? questions from the rubric as yes or no
|
|
22
|
+
5. Append a row to results.csv — fill in all fields you can determine from the diff and context. Leave fields you can't determine empty.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Examples
|
|
26
|
+
|
|
27
|
+
```text
|
|
28
|
+
User: Apply this skill to my current task.
|
|
29
|
+
Assistant: Follow the workflow in this skill, cite limitations, and ask before risky steps.
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Limitations
|
|
33
|
+
|
|
34
|
+
- Imported upstream skill; verify credentials, permissions, and safety boundaries before execution.
|
|
35
|
+
- Does not replace environment-specific validation, testing, or maintainer review.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Curated upstream guidance for Writing Guidelines; use when the workflow matches the user goal.
|
|
3
|
+
name: writing-guidelines
|
|
4
|
+
metadata:
|
|
5
|
+
author: vercel
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
argument-hint: <file-or-pattern>
|
|
8
|
+
source_repo: vercel-labs/agent-skills
|
|
9
|
+
source_type: official
|
|
10
|
+
source: vercel-labs
|
|
11
|
+
date_added: '2026-09-21'
|
|
12
|
+
risk: unknown
|
|
13
|
+
---
|
|
14
|
+
## When to Use
|
|
15
|
+
- Use when this upstream workflow matches the user's stated goal.
|
|
16
|
+
- Use when the task requires the procedures documented in this skill.
|
|
17
|
+
|
|
18
|
+
# Writing Guidelines
|
|
19
|
+
|
|
20
|
+
Review files for compliance with Writing Guidelines.
|
|
21
|
+
|
|
22
|
+
## How It Works
|
|
23
|
+
|
|
24
|
+
1. Fetch the latest guidelines from the source URL below
|
|
25
|
+
2. Read the specified files (or prompt user for files/pattern)
|
|
26
|
+
3. Check against all rules in the fetched guidelines
|
|
27
|
+
4. Output findings in the terse `file:line` format
|
|
28
|
+
|
|
29
|
+
## Guidelines Source
|
|
30
|
+
|
|
31
|
+
Fetch fresh guidelines before each review:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
https://raw.githubusercontent.com/vercel-labs/writing-guidelines/main/command.md
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Use WebFetch to retrieve the latest rules. The fetched content contains all the rules and output format instructions.
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
When a user provides a file or pattern argument:
|
|
42
|
+
1. Fetch guidelines from the source URL above
|
|
43
|
+
2. Read the specified files
|
|
44
|
+
3. Apply all rules from the fetched guidelines
|
|
45
|
+
4. Output findings using the format specified in the guidelines
|
|
46
|
+
|
|
47
|
+
If no files specified, ask the user which files to review.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
## Examples
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
User: Apply this skill to my current task.
|
|
54
|
+
Assistant: Follow the workflow in this skill, cite limitations, and ask before risky steps.
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Limitations
|
|
58
|
+
|
|
59
|
+
- Imported upstream skill; verify credentials, permissions, and safety boundaries before execution.
|
|
60
|
+
- Does not replace environment-specific validation, testing, or maintainer review.
|
package/package.json
CHANGED