Type: L3 Worker
Works with
Category: 7XX Project Bootstrap
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionln-774-healthcheck-setupExecute the skills CLI command in your project's root directory to begin installation:
Fetches ln-774-healthcheck-setup from levnikolaevich/claude-code-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate ln-774-healthcheck-setup. Access via /ln-774-healthcheck-setup in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
335
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
335
stars
Type: L3 Worker Category: 7XX Project Bootstrap
Configures health check endpoints for Kubernetes probes and monitoring.
| Aspect | Details |
|---|---|
| Input | Context Store from ln-770 |
| Output | Health check endpoints and Kubernetes probe configuration |
| Stacks | .NET (AspNetCore.Diagnostics.HealthChecks), Python (FastAPI routes) |
Accept Context Store and scan for dependencies to monitor.
Required Context:
STACK: .NET or PythonPROJECT_ROOT: Project directory pathIdempotency Check:
AddHealthChecks or MapHealthChecks/health route{ "status": "skipped" }Dependency Detection:
| Dependency | .NET Detection | Python Detection |
|---|---|---|
| PostgreSQL | Npgsql in csproj |
psycopg2 or asyncpg in requirements |
| MySQL | MySql.Data in csproj |
mysql-connector-python in requirements |
| Redis | StackExchange.Redis in csproj |
redis in requirements |
| RabbitMQ | RabbitMQ.Client in csproj |
pika or aio-pika in requirements |
| MongoDB | MongoDB.Driver in csproj |
pymongo in requirements |
Define three types of health endpoints per Kubernetes best practices.
| Endpoint | Probe Type | Purpose | Checks |
|---|---|---|---|
/health/live |
Liveness | Is app alive? | App responds (no dependency checks) |
/health/ready |
Readiness | Can app serve traffic? | All dependencies healthy |
/health/startup |
Startup (K8s 1.16+) | Is app initialized? | Initial warmup complete |
| Probe | Failure Action | Kubernetes Behavior |
|---|---|---|
| Liveness | Container restart | kubelet restarts container |
| Readiness | Remove from service | Traffic stopped, no restart |
| Startup | Delay other probes | Liveness/Readiness paused |
Use MCP tools for current documentation.
For .NET:
MCP ref: "ASP.NET Core health checks Kubernetes probes"
Context7: /dotnet/aspnetcore
For Python:
MCP ref: "FastAPI health check endpoint Kubernetes"
Context7: /tiangolo/fastapi
Key Patterns to Research:
Determine probe timing based on application characteristics.
| Parameter | Liveness | Readiness | Startup |
|---|---|---|---|
initialDelaySeconds |
10 | 5 | 0 |
periodSeconds |
10 | 5 | 5 |
timeoutSeconds |
5 | 3 | 3 |
failureThreshold |
3 | 3 | 30 |
successThreshold |
1 | 1 | 1 |
Startup Probe Calculation:
Max startup time = initialDelaySeconds + (periodSeconds × failureThreshold)
Default: 0 + (5 × 30) = 150 seconds
| File | Purpose |
|---|---|
Extensions/HealthCheckExtensions.cs |
Health check registration |
HealthChecks/StartupHealthCheck.cs |
Custom startup check |
Generation Process:
Packages to Add:
AspNetCore.HealthChecks.NpgSql (if PostgreSQL)AspNetCore.HealthChecks.Redis (if Redis)AspNetCore.HealthChecks.MySql (if MySQL)Registration Code:
builder.Services.AddHealthCheckServices(builder.Configuration);
// ...
app.MapHealthCheckEndpoints();
| File | Purpose |
|---|---|
routes/health.py |
Health check router |
services/health_checker.py |
Dependency health checks |
Generation Process:
Registration Code:
from routes.health import health_router
app.include_router(health_router)
Generate for inclusion in deployment.yaml:
livenessProbe:
httpGet:
path: /health/live
port: 5000
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /health/ready
port: 5000
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 3
startupProbe:
httpGet:
path: /health/startup
port: 5000
periodSeconds: 5
failureThreshold: 30
Validation Steps:
Syntax check:
dotnet build --no-restorepython -m py_compile routes/health.pyEndpoint test:
curl http://localhost:5000/health/live
curl http://localhost:5000/health/ready
curl http://localhost:5000/health/startup
Verify response format:
{
"status": "Healthy",
"checks": {
"database": { "status": "Healthy", "duration": "00:00:00.0234" },
"redis": { "status": "Healthy", "duration": "00:00:00.0012" }
},
"totalDuration": "00:00:00.0250"
}
Dependency failure test:
/health/ready returns 503/health/live still returns 200{
"status": "success",
"files_created": [
"Extensions/HealthCheckExtensions.cs",
"HealthChecks/StartupHealthCheck.cs"
],
"packages_added": [
"AspNetCore.HealthChecks.NpgSql"
],
"registration_code": "builder.Services.AddHealthCheckServices(configuration);",
"message": "Configured health checks with liveness, readiness, and startup probes"
}
/health/live, /health/ready, /health/startup per Kubernetes best practicesAddHealthChecks/MapHealthChecks or /health route exists, return status: "skipped"dotnet build or py_compile)Version: 2.0.0 Last Updated: 2026-01-10
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
Registry listing for ln-774-healthcheck-setup matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: ln-774-healthcheck-setup is the kind of skill you can hand to a new teammate without a long onboarding doc.
ln-774-healthcheck-setup is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
We added ln-774-healthcheck-setup from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
ln-774-healthcheck-setup is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: ln-774-healthcheck-setup is the kind of skill you can hand to a new teammate without a long onboarding doc.
ln-774-healthcheck-setup reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: ln-774-healthcheck-setup is focused, and the summary matches what you get after install.
Useful defaults in ln-774-healthcheck-setup — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
ln-774-healthcheck-setup has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 58