resilience
v0.6.4Runtime quality in one plugin — does it stay up, can you see it, is it fast. Failure-mode design for integration points (timeouts, retries with backoff and idempotency, circuit breaking, graceful degradation, delivery semantics) with the merged error-handling and concurrency disciplines and the event-driven skill (brokers, outbox, sagas, DLQ, consumer idempotency); application observability (structured logs with correlation IDs, RED/USE metrics without cardinality bombs, trace propagation, honest health checks); and measure-first performance (N+1, payload, bundle, Core Web Vitals, cache correctness, percentile load tests). One audit, /resilience:review, over all six rubrics or one of them via --concern, and two workers, observability-engineer and performance-engineer, that apply only what a measurement or a finding proves.
By Ivan-WG1 GitHub starsUpdated last week
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 6 skill or MCP entries
- Source updated
- Sep 15, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install resilience for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install resilience@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/galaykos/cc-marketplaceClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/resilience/.
Plugin files
├── .claude-plugin/plugin.json├── skills/concurrency-safety/SKILL.md├── skills/error-handling-design/SKILL.md├── skills/event-driven/SKILL.md├── skills/observability-design/SKILL.md├── skills/performance-tuning/SKILL.md└── skills/resilience-design/SKILL.md
Included Skills6
Use when code has concurrent writers or retried operations — race conditions, check-then-act, optimistic vs pessimistic locking, distributed locks, retry idempotency. Broker delivery, outbox, DLQ → this plugin's event-driven skill.
Use when writing or reviewing exception and error handling — try/catch placement, error boundaries, propagation, custom error types, rethrow and cause chains, fail-fast vs recover — instead of catch-log-continue at every layer.
Use when designing or reviewing message-driven architecture — brokers/queues, topics and partitions, event schema versioning, delivery semantics, outbox, sagas, dead-letter queues, consumer idempotency. In-process framework queues belong to the stack plugin.
Use when writing or reviewing code that emits telemetry — logging, metrics, tracing, health checks, alerting, error reporting — to design structured, correlated, bounded observability signals instead of print-statement archaeology at incident time.
Use when code is measurably slow or heavy, or when reviewing a change for performance — measure-before-and-after, N+1, payload, bundle, Core Web Vitals, cache correctness (stampede, TTL, eviction), percentile load testing. Index/schema design belongs to database; statement shape to sql.
Use when code crosses a process boundary — HTTP calls, queues, databases, third-party APIs, background jobs — timeout, retry, degradation, and delivery-semantics decisions instead of inherited defaults.
Plugin manifests1
{
"name": "resilience",
"version": "0.6.4",
"description": "Runtime quality in one plugin — does it stay up, can you see it, is it fast. Failure-mode design for integration points (timeouts, retries with backoff and idempotency, circuit breaking, graceful degradation, delivery semantics) with the merged error-handling and concurrency disciplines and the event-driven skill (brokers, outbox, sagas, DLQ, consumer idempotency); application observability (structured logs with correlation IDs, RED/USE metrics without cardinality bombs, trace propagation, honest health checks); and measure-first performance (N+1, payload, bundle, Core Web Vitals, cache correctness, percentile load tests). One audit, /resilience:review, over all six rubrics or one of them via --concern, and two workers, observability-engineer and performance-engineer, that apply only what a measurement or a finding proves.",
"author": {
"name": "Ivan-WG",
"email": "[email protected]"
},
"keywords": [
"backend",
"review"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[resilience on Agent Plugins Marketplace](https://pluginsmp.com/plugins/resilience)