Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Out Of Scope

ASecurity

Record rejected ideas so future planning does not revisit them.

85 stars
0 votes
0 copies
0 views
Added 9/19/2026
documentationbash

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add indigoai-us/hq-core --skill out-of-scope --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Out Of Scope?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Out Of Scope
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/indigoai-us-out-of-scope/badge)](https://www.skillsdirectory.com/skills/indigoai-us-out-of-scope)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: out-of-scope
description: Record rejected ideas so future planning does not revisit them.
allowed-tools: Read, Grep, Glob, Bash, Write, Edit, AskUserQuestion
---

# Out of Scope

Pattern adapted from `mattpocock/skills` `.out-of-scope/` directory. Used to *stop* re-suggesting features that have been deliberately rejected.

## When `/out-of-scope` vs `/adr` vs `/learn`

| Surface | What it captures | Consulted when |
|---|---|---|
| `/out-of-scope` | Rejected feature request + reasoning + escape hatches | Future feature triage / brainstorm sessions |
| `/adr` | Accepted technical decision + alternatives | Future architecture reviews |
| `/learn` | Cross-tenant pattern (failure mode, fix recipe) | Any session in any company on a similar problem |

A request that becomes "we'll never build this for these reasons" → `/out-of-scope`.
A decision that becomes "we picked X over Y because" → `/adr`.
A failure mode that crystallized into "always check Z first" → `/learn`.

## Step 0 — Resolve company + scope

`$ARGUMENTS` may include:

- `[company]` slug
- `[scope=repo|co|hq]`
- `<one-line rejected request>` — used as title and slug seed

Pick scope via `AskUserQuestion` if ambiguous:

| Scope | Target dir | When |
|---|---|---|
| `repo` | `<repo>/.out-of-scope/` | Rejection only applies to that codebase |
| `co` | `companies/{co}/knowledge/out-of-scope/` | Rejection applies across the company's repos |
| `hq` | `core/knowledge/public/out-of-scope/` | Rejection is HQ-wide policy ("we will never adopt X") |

Hidden `.out-of-scope/` (with leading dot) for repo scope mirrors Matt's convention. The plain `out-of-scope/` for `co` and `hq` because those are inside `core/knowledge/`, not at repo root, and hiddenness is unnecessary.

## Step 1 — Check for duplicates

Before writing, search the target dir + parent scopes for an existing entry with a similar title:

```bash
ls <target>/*.md 2>/dev/null
grep -li "<keyword>" <target>/*.md <target-parent>/*.md 2>/dev/null
```

If a matching entry exists:

| Option | Action |
|---|---|
| **Append** | Add a new "Prior requests" line to the existing file with today's date and a short quote |
| **Update** | Edit the existing file to refine reasoning (rare) |
| **New entry** | The existing entry is genuinely about a different idea — proceed to write |

Present via `AskUserQuestion`.

## Step 2 — Compute slug + filename

Title comes from `$ARGUMENTS` or via prompt. Slug rules:

- Lowercase
- Spaces / underscores → `-`
- Strip non-alphanumeric except `-`
- Cap at 60 chars
- Verb-first when possible (e.g., `disable-batched-questions-in-grill`, not `grill-batched-question-disable`)

Filename: `<slug>.md`. No numeric prefix (unlike ADRs — these aren't ordered).

## Step 3 — Walk the user through the four sections

Use up to two `AskUserQuestion` calls (HQ batched-question policy: ≤4 questions per call) to collect:

1. **Title** — short noun phrase, sentence case
2. **Rejection statement** — one paragraph: what is being rejected and the boundary of the rejection
3. **Why this is out of scope** — reasoning, often citing existing escape hatches (the user's natural-language steering, an alternate skill that handles this, a manual workaround)
4. **Prior requests** — issue/PR/conversation refs if any (`#<n>`, Linear `<co>-<n>`, conversation date)

## Step 4 — Write the markdown

Template:

```markdown
# <Title>

<One-paragraph rejection statement: what's out of scope, and the boundary of the rejection.>

## Why this is out of scope

<Reasoning. Often points to escape hatches:
- The user can already steer this naturally
- Skill X already handles this surface
- The fix belongs at level Y, not in scope here>

<Optional: explain why the obvious-looking fix is wrong>

## Prior requests

- <issue/PR ref> — "<short quote>"
- <conversation date> — "<short quote>"
```

If no prior requests yet, the section can read `(this is the first time we've considered + rejected this)`.

## Step 5 — Cross-link

If the rejection relates to an accepted ADR, add a link in the ADR's `Considered Options` or `Consequences` section pointing to this out-of-scope file.

If the rejection emerged from a `/brainstorm` session, link the brainstorm artifact (`personal/projects/{slug}/brainstorm.md` or `companies/{co}/projects/{slug}/brainstorm.md`) in the rejection's "Prior requests" section.

## Step 6 — Report

Print:

```
✓ Out-of-scope entry written: <target>/<slug>.md
  Title: <title>
  Scope: repo | co | hq
  Prior request count: <N>
  Linked ADRs: <list / none>
```

## Consultation pattern (for other skills)

When `/brainstorm`, `/plan`, or any feature-triage skill receives a feature request, it should grep all three out-of-scope dirs (most-specific first):

```bash
# in repo scope
grep -li "<keyword>" \
  <repo>/.out-of-scope/*.md \
  companies/{co}/knowledge/out-of-scope/*.md \
  core/knowledge/public/out-of-scope/*.md \
  2>/dev/null
```

Match → surface the rejection summary + ask the user "is this different from <existing>, or are you re-litigating?" before proceeding.

This is the *whole point* of the graveyard. A graveyard nobody reads is just a folder.

## Examples (copy from Matt's repo for shape)

- `repos/public/skills/.out-of-scope/question-limits.md` — rejecting a configurable cap on grill-me question count
- `repos/public/skills/.out-of-scope/mainstream-issue-trackers-only.md` — rejecting support for esoteric trackers
- `repos/public/skills/.out-of-scope/setup-skill-verify-mode.md` — rejecting a verify-mode for setup skills

## Cross-references

- `/adr` — sibling for accepted decisions.
- `/brainstorm`, `/plan` — should consult `/out-of-scope` before adding ideas.
- `/learn` — for cross-tenant failure-mode patterns (different surface).
- Pattern source: `mattpocock/skills` `.out-of-scope/` directory.

Attribution

indigoai-usindigoai-us
View sourceMore from indigoai-us →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Context Fundamentals

Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.

179001 votes

release-notes

Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.

1301 votes

docs-style-guide

Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.

11 votes

Caveman Help

Quick-reference card for caveman modes, skills and commands. Trigger: /caveman-help or "caveman help".

1066600 votes

How It Works

Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".

942310 votes
View all in documentation →