Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/blocked-human.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: "🚧 Blocked on human action"
about: A task stalled on external human action (DUA/DSA signature, sign-up, records-release email, IRB response, etc). Surfaced automatically in the weekly stalled-work digest — stays visible for as long as it's open.
title: "[blocked-human] "
labels: []
assignees: ''
---

## What's needed
<!-- The specific human action required: sign a DUA, complete a sign-up, send/await an email, etc. -->

## Why it's blocking
<!-- What this unblocks once resolved -->

## Waiting on
<!-- Who/what: a portal, an institution, a person, an inbox -->

## Next step
<!-- The single next concrete action -->
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/followup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: "📅 Dated follow-up"
about: A task with a specific date to check back in. Only surfaces in the weekly stalled-work digest once that date has passed.
title: "[followup: YYYY-MM-DD] "
labels: []
assignees: ''
---

## What to check
<!-- What you're following up on -->

## Why it matters
<!-- Why this needs revisiting on that date -->
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ A personal collection of [Agent Skills](https://agentskills.io) — portable, se

Each skill is a folder containing a `SKILL.md` file (instructions + metadata) and, where needed, supporting `scripts/`, `references/`, or `assets/`. Nothing here is Claude-specific unless explicitly noted — see [CONTRIBUTING.md](./CONTRIBUTING.md) for the portability rules this repo follows.

> [!IMPORTANT]
> **Stalled-work tracking.** Tasks blocked on external human action — a DUA/DSA signature, an account sign-up, a records-release email, an IRB response — are tracked as GitHub issues, not left to memory. Open one with the **🚧 Blocked on human action** or **📅 Dated follow-up** issue template (top of "New Issue"); the title tag (`[blocked-human] ...` / `[followup: YYYY-MM-DD] ...`) is what a weekly automated digest scans for across every public repo here, pushed as a phone notification so nothing silently rots.
>
> Browse current items: [blocked](https://github.com/Hefrock/agent-skills/issues?q=is%3Aopen+is%3Aissue+%5Bblocked-human%5D+in%3Atitle) · [pending follow-ups](https://github.com/Hefrock/agent-skills/issues?q=is%3Aopen+is%3Aissue+%5Bfollowup%3A+in%3Atitle) *(GitHub's search UI tokenizes brackets loosely — these links are a convenience, not authoritative; the digest itself does an exact title-prefix match via the API)*.
>
> **Resolve:** close the issue. **Update:** edit it — the digest reads live state, nothing to sync. **Postpone:** change the `YYYY-MM-DD` in a follow-up's title; a `[blocked-human]` item has no date by design, so it keeps resurfacing until closed.

## Skills

| Skill | Category | Description |
Expand Down Expand Up @@ -51,7 +58,8 @@ Copy the skill folder into whatever directory that platform scans for skills —
```
agent-skills/
├── .github/
│ └── workflows/ci.yml # builds + tests the MCP server, runs the Python skill suites
│ ├── workflows/ci.yml # builds + tests the MCP server, runs the Python skill suites
│ └── ISSUE_TEMPLATE/ # blocked-human / dated-followup templates for stalled-work tracking
├── .claude-plugin/
│ └── marketplace.json # Claude Code-only install metadata — optional, additive
├── skills/ # flat — one folder per skill, no category nesting
Expand Down
Loading