Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Structured decision-making framework for technical proposals and trade-off analysis. When the user faces a choice between multiple approaches (architecture decisions, tool selection, refactoring strategies, migration paths), this skill produces a 1-3-1 format: one clear problem statement, three distinct options with pros/cons, and one concrete recommendation with definition of done and implementation plan. Use when the user asks for a "1-3-1", says "give me options", or needs help choosing betwe
.claude/skills/nousresearch-one-three-one-rule/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 25% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 36% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 19% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 103% | 0% |
Structured decision-making format for when a task has multiple viable approaches and the user needs a clear recommendation. Produces a concise problem framing, three options with trade-offs, and an actionable plan for the recommended path.
Do NOT use for simple questions with one obvious answer, debugging sessions, or tasks where the user has already decided on an approach.
User: "Give me a 1-3-1 for adding retry logic to our API client."
Agent:
Problem: API calls to external services fail intermittently under load and need graceful retry handling.
Options:
Pros: Simple, well-understood pattern; single implementation shared across all callers. Cons: No circuit-breaking; callers still block during retries.
Pros: Configurable per-endpoint; built-in support for circuit breakers and rate limits. Cons: Adds a dependency; decorator pattern can obscure control flow.
Pros: Non-blocking; failed calls are tracked and replayable; scales well. Cons: Significant complexity increase; requires a queue backend; overkill for low-volume services.
Recommendation: Option A. The call volume doesn't justify queue infrastructure, and a shared utility with exponential backoff + jitter covers the failure mode cleanly without new dependencies.
Definition of Done:
api_retry() utility handles transient HTTP errors (429, 502, 503, 504).Implementation Plan:
utils/api_retry.py with configurable max retries, base delay, and retryable status codes.random.uniform(0, base_delay) to prevent thundering herd.api_client.py with the retry utility.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 15,233 | 9,145 | -40% | 1 | 1 | 0% | 2,551 | 2,725 | +7% | 0 | 0 | — |
case-02 | fail→pass | 12,246 | 9,603 | -22% | 1 | 1 | 0% | 2,244 | 2,801 | +25% | 0 | 0 | — |
case-03 | fail→pass | 11,949 | 11,068 | -7% | 1 | 1 | 0% | 2,159 | 2,943 | +36% | 0 | 0 | — |
case-04 | pass→fail | 10,854 | 9,440 | -13% | 1 | 1 | 0% | 2,065 | 2,575 | +25% | 0 | 0 | — |
case-05 | pass→fail | 16,859 | 12,704 | -25% | 1 | 1 | 0% | 3,131 | 3,277 | +5% | 0 | 0 | — |
case-06 | pass→pass | 4,474 | 2,755 | -38% | 1 | 1 | 0% | 835 | 1,495 | +79% | 0 | 0 | — |
case-07 | fail→pass | 11,949 | 10,166 | -15% | 1 | 1 | 0% | 2,411 | 2,871 | +19% | 0 | 0 | — |
case-08 | fail→pass | 7,959 | 9,651 | +21% | 1 | 1 | 0% | 1,356 | 2,751 | +103% | 0 | 0 | — |
case-09 | fail→pass | 10,857 | 10,881 | +0% | 1 | 1 | 0% | 1,882 | 3,031 | +61% | 0 | 0 | — |
case-10 | fail→pass | 9,984 | 9,243 | -7% | 1 | 1 | 0% | 1,795 | 2,590 | +44% | 0 | 0 | — |
case-11 | fail→pass | 10,200 | 9,089 | -11% | 1 | 1 | 0% | 1,857 | 2,657 | +43% | 0 | 0 | — |
case-12 | fail→pass | 10,840 | 10,355 | -4% | 1 | 1 | 0% | 1,868 | 2,963 | +59% | 0 | 0 | — |
case-13 | fail→pass | 11,028 | 7,653 | -31% | 1 | 1 | 0% | 1,926 | 2,197 | +14% | 0 | 0 | — |
case-14 | fail→pass | 14,732 | 9,468 | -36% | 1 | 1 | 0% | 2,457 | 2,555 | +4% | 0 | 0 | — |
case-15 | fail→pass | 12,520 | 11,966 | -4% | 1 | 1 | 0% | 2,070 | 3,000 | +45% | 0 | 0 | — |
case-16 | fail→pass | 15,730 | 11,056 | -30% | 1 | 1 | 0% | 2,562 | 2,823 | +10% | 0 | 0 | — |
case-17 | fail→pass | 15,123 | 11,726 | -22% | 1 | 1 | 0% | 2,438 | 2,776 | +14% | 0 | 0 | — |
case-18 | fail→pass | 5,852 | 8,976 | +53% | 1 | 1 | 0% | 924 | 2,369 | +156% | 0 | 0 | — |
case-19 | fail→pass | 10,780 | 9,211 | -15% | 1 | 1 | 0% | 1,763 | 2,645 | +50% | 0 | 0 | — |
case-20 | fail→pass | 11,335 | 11,487 | +1% | 1 | 1 | 0% | 1,806 | 2,749 | +52% | 0 | 0 | — |
case-21 | fail→pass | 16,044 | 10,570 | -34% | 1 | 1 | 0% | 2,495 | 2,676 | +7% | 0 | 0 | — |
case-22 | fail→pass | 13,806 | 10,645 | -23% | 1 | 1 | 0% | 2,290 | 2,587 | +13% | 0 | 0 | — |
case-23 | fail→pass | 11,466 | 10,563 | -8% | 1 | 1 | 0% | 1,802 | 2,569 | +43% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +78 percentage points is the difference between those two pass rates over the 23 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.