landscape — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited landscape (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Show a consolidated landscape of where you are and what to do next, pulling from multiple sources at once. Designed for the start of a work session (especially Monday mornings) to quickly orient.
/landscape # Full landscape
/landscape quick # Skip PR details (faster, Jira + working-copy + beads-if-present only)Separate blocks, rendered from broadest context to most immediate. Order matters — the last block is the most load-bearing for "what am I doing right now":
bd not installed)Each block is independent — if one source fails, the others still render.
MUST re-fetch on every invocation. Each/landscaperun MUST execute every fetch from scratch —date, the Jira MCP query, thegh-pr-list-*andgh-pr-details.shscripts,beads.sh, andworking-copy.sh. NEVER reuse output from a previous run in the same session and NEVER extrapolate timestamps. State changes (PR merges, new approvals, ticket transitions) happen between runs; reusing stale tables has caused real merges to be missed in/pr-statusand the same risk applies here.
>
MUST use the dedicated helper scripts. Never construct ad-hocbd …orgit …shell pipelines for this skill. Specifically: do NOT chaincommand -v bdprobes withbd list … && …or… || bd list --readyinside a single Bash call. Always invoke~/.claude/skills/landscape/scripts/beads.shinstead — it handles probing, repo gating, and listing internally. Likewise, do NOT hand-walk sibling service repos with your ownfor … git -C …loop — always go through~/.claude/skills/wrap-up/scripts/multirepo.sh(§4b), which handles workspace detection and per-repo state. Inline chaining bypasses the per-script permission allowlist and produces noisy permission prompts.
Render the blocks in the order listed below. Some data fetches can run in parallel at the top.
date '+%A %Y-%m-%d %H:%M'Output:
## Landscape — {Weekday} {YYYY-MM-DD} {HH:MM}If the weekday is Monday, add a subtitle: _Monday — extra catch-up across the weekend._
Query Jira for open tickets assigned to the current user, including sprint membership. The sprint field is the Jira Cloud default custom field customfield_10020. Use the MCP tool:
mcp__jira__jira_get
path: /rest/api/3/search/jql
queryParams:
jql: assignee = currentUser() AND statusCategory != Done ORDER BY cf[10020] ASC, priority DESC, updated DESC
fields: summary,status,priority,issuetype,updated,customfield_10020
maxResults: 20
jq: issues[*].{key: key, summary: fields.summary, type: fields.issuetype.name, status: fields.status.name, priority: fields.priority.name, updated: fields.updated, sprint: fields.customfield_10020}The sprint field is an array of sprint objects. Extract the active sprint's name (first sprint where state == "active"), or the most recent if none are active. If the array is empty or null, show — (ticket not in a sprint — possibly backlog).
Sort the rows before rendering. JQL's cf[10020] sort is unreliable across sprint states, so re-sort client-side:
startDate ascending), then no-sprint / backlog last.P1 → P2 → P3 → P4 → P5 (treat missing/unknown priority as lowest).updated DESC order.Keep it as a single table — the Sprint column makes the group boundary visible without subheadings.
Render:
### 📋 Jira — assigned to you
| Key | Sprint | Type | Pri | Status | Updated | Summary |
|-----|--------|------|-----|--------|---------|---------|
| [AB-649](https://.../browse/AB-649) | Sprint 42 | Task | P1 | In Progress | 2h | Stabilise identity cookies |self field, or a site-configured base (e.g. https://yourorg.atlassian.net/browse/{key}).S{N} if the column gets wide. — if none.P1 Critical → P1, P2 High → P2, etc.updated (e.g. 2h, 4d).If no tickets are assigned, show _No open Jira tickets assigned to you._
If the Jira API returns an error, show _Jira unavailable: {error}_ and move on — do not fail the whole skill.
After the table, note whether the tickets span one sprint or multiple. Example: _All 6 in Sprint 42._ or _Spans 2 sprints: Sprint 42 (4), Sprint 43 (2)._ This answers "am I focused or scattered?" at a glance.
If `/landscape quick` was invoked, skip this section entirely and add a one-line note: _PR section skipped (quick mode). Run /pr-status for full view._
Otherwise, follow the pr-status skill's instructions as-is (see ~/.claude/skills/pr-status/SKILL.md). Reuse its scripts directly — do NOT re-invoke the slash command:
gh-pr-list-open.shgh-pr-list-closed.shgh-pr-details.sh (grouped by owner/repo)Head this section ### 🔀 PRs instead of pr-status's own headings.
Run the beads.sh helper. It probes for bd, checks for .beads/ in the repo, and emits in-progress + ready listings as delimited sections. Do not call `bd` directly from this skill — always go through this script:
~/.claude/skills/landscape/scripts/beads.shOutput sections (delimited by ---<NAME>---):
---STATUS--- — OK, NO_BD (bd not installed), or NO_BEADS_IN_REPO (no .beads/ here)---IN-PROGRESS--- — output of bd list --status=in_progress (only if STATUS=OK)---READY--- — JSON array from next-bd --json (or plain text from bd list --ready fallback) (only if STATUS=OK)If STATUS is NO_BD, render _Beads not installed — skipping._ and stop. If STATUS is NO_BEADS_IN_REPO, render _No beads in this repo._ and stop. Otherwise render the tables below.
#### In-progress beads
**In progress ({count})**
| ID | Pri | Type | Labels | Title |
|----|-----|------|--------|-------|— if none._No in-progress beads._#### Ready beads — sorted by sprint
The ---READY--- section is a JSON array (from next-bd --json). Each item has id, title, priority, issue_type, and rank.
Step 1 — Extract Jira keys. For each bead, scan title for the first match of [A-Z]+-\d+. If no match, the bead has no Jira link.
Step 2 — Batch Jira sprint lookup. If any keys were found, call:
mcp__jira__jira_get
path: /rest/api/3/search/jql
queryParams:
jql: key in ({comma-separated keys})
fields: summary,status,issuetype,priority,customfield_10020
maxResults: 50
jq: issues[*].{key: key, status: fields.status.name, sprint: fields.customfield_10020}For each ticket's sprint array, pick the active sprint (first with state=="active"). If none active, pick the earliest future sprint (lowest startDate with state=="future"). If neither, treat as no-sprint.
Step 3 — Sort and cap. Bucket order: active sprint(s) → future sprints (by startDate) → no-sprint (has Jira key) → no Jira link. Within each bucket preserve the rank order from next-bd. Cap the total at 5 beads. If more exist: _+{N} more — run /next sprint to see all._
Step 4 — Render. One table:
**Ready ({shown} of {total})**
| # | ID | Pri | Type | Jira | Sprint | Status | Title |
|---|----|-----|------|------|--------|--------|-------|# is the picker index 1-N.Jira column: markdown link [KEY](https://yourorg.atlassian.net/browse/KEY). Show — if no Jira key.Sprint column: number + state suffix only (31 (active), 32 (future)) — strip the project prefix from sprint names like "PROJ Sprint 31". Show — if no sprint or no Jira.Status column: Jira status. Show — if no Jira._No ready beads. Run /triage to add work._---READY--- section is not valid JSON (fallback plain text): render it as-is, capped at 5 lines._Jira unavailable._Rendered LAST because it's the most immediate context — the branch you're sitting on right now, what needs committing/pushing, and whether it's in sync.
Run the working-copy.sh helper, which emits delimited sections for branch, dirty status, ahead/behind, last commit, and on-branch stash count:
~/.claude/skills/landscape/scripts/working-copy.shOutput is grouped by ---SECTION--- markers. Parse and render from that.
Render:
### 📍 Working copy
| Field | Value |
|-------|-------|
| Branch | fix/AB-649-device-cookie-combined |
| Dirty | clean _(or: 3 modified, 1 untracked)_ |
| vs upstream | ✅ in sync _(or: ⬆ 2 ahead, ⬇ 1 behind)_ |
| Last commit | `abc1234` commit subject (2h ago) |Notes:
@{u} fails (no upstream), show no upstream tracking.clean. ⚠️ {N} stash(es) on this branch — run `git stash list` to review.Global stash count is not interesting — omit it.
OTHER-WORKTREES-UNSAFE section lists only worktrees (excluding the current one) that have uncommitted changes or unpushed commits. If empty, render nothing — worktrees that are clean and pushed are not interesting. If non-empty, add a footnote below the table: ⚠️ Other worktrees with unsaved work:
- `/path/to/other` on `fix/X` — 3 modified, 2 unpushedOmit the dirty/unpushed parts that are zero (e.g. 3 modified alone, or 2 unpushed alone).
~/.claude/handoffs/ via: ~/.claude/skills/handoffs/scripts/list.sh --summary-onlyParse from the output:
---SUMMARY--- → current_repo_recent_live — recent handoffs for this repo that are still live work: not superseded and not finished (uses the same Mon→3 / Tue→4 / else→3 weekend buffer as the closed-PR list). "Finished" here means all referenced beads are closed — a local bd check that runs even on this offline (--summary-only, no --check-branches) call, so a handoff whose task shipped no longer counts as a live thread to resume. Re-wraps of the same branch still collapse to one. (Merged-PR / Jira-Done detection needs the network and only applies under /handoffs's --check-branches; landscape's offline count catches the bead-closed case.)---CURRENT-REPO-LATEST--- → a single {slug}|{branch}|{date} line for the newest current-repo handoff (the "last session"), or empty if none.---CURRENT-REPO-LIVE--- → one {slug}|{branch}|{date}|{time} line per recent live (non-superseded, non-finished) current-repo handoff, newest first (these are the threads behind the current_repo_recent_live count). The first line equals ---CURRENT-REPO-LATEST--- when the newest handoff is itself still live; if the newest one is finished it's absent here, so the first line is the most recent resumable thread instead.If current_repo_recent_live > 0, render its own table (N = current_repo_recent_live) — a footnote got lost among the other tables, so give it the same ### {emoji} {Name} + table shape as the sections above:
### 📥 Recent handoffs ({N} live, last {RECENT-WINDOW-DAYS}d)
| Handoff | Branch | When |
|---------|--------|------|
| `{slug}` 📍 | `{branch}` | {age} |
| `{slug}` | `{branch}` | {age} |
_`/handoffs` to browse and resume._---CURRENT-REPO-LIVE--- line, newest first.{slug}. Append 📍 to the row whose {slug} matches the ---CURRENT-REPO-LATEST--- line — that's the last session, the most likely resume target. When the newest handoff is already finished it won't appear here; the first row is then simply the most recent resumable thread, left unmarked.{branch}; render — when it is ? or empty.{date} (e.g. today, 2d).N > 5, render the first 5 and replace the caption with _+{N − 5} more — /handoffs to browse._Suppress the section entirely when current_repo_recent_live == 0 — silence is shorter. Older, superseded, or finished handoffs are still browsable via /handoffs; this table is just a fresh-work hint, deliberately offline (no --check-branches, so no branch-staleness here). This call can run in parallel with working-copy.sh.
working-copy.sh (§4) inspects only the cwd repo (plus its own worktrees). In a multi-repo workspace — mgit services (.mgit.conf) or git submodules (.gitmodules) — that silently misses uncommitted/unpushed state in sibling service repos. This is the single biggest blind spot at session start: you orient on the root repo and never notice that, say, dispatch was left with unpushed commits last night. Roll them up:
~/.claude/skills/wrap-up/scripts/multirepo.shIt emits ---MARKER--- (mgit | submodules | none), ---ROOT---, and ---REPOS--- lines: {name}|{branch}|{ahead}|{behind}|{upstream}|{modified}|{untracked} (ahead/behind are - with no upstream; the root repo appears as its own row). This call can run in parallel with working-copy.sh — it's the same roll-up /wrap-up §3b uses.
### 🗂️ Other repos in this workspace
| Repo | Branch | Unpushed | Behind | Uncommitted |
|------|--------|----------|--------|-------------|{ahead}, or no upstream when upstream=no (local-only, never pushed).⚠️ diverged — N ahead / M behind.{modified} modified / {untracked} untracked (omit zero parts).Carry the most urgent member (diverged, then unpushed, then uncommitted) into the §5 Next suggestion — a sibling repo left in that state is exactly what a fresh session forgets.
After all blocks render, add a short footer with a concrete next step, picked from what's visible. Prefer the most load-bearing single action:
/review-comments./rebase-main.Once those "finish / unblock" actions are clear, the suggestion becomes a pick-what-to-work-on decision. This is the morning "resume a handoff or start fresh?" question — arbitrate it here rather than leaving the user to choose between /handoffs and /next. Use the handoff signals from §4 (current_repo_recent_live and the ---CURRENT-REPO-LATEST--- {slug}|{branch}|{date} line):
{branch} equals the §4 working-copy branch) → strongest resume signal: you're already sitting on its branch and it carries the open threads + suggested next step the bare branch doesn't. Suggest Resume {slug} — /handoffs.current_repo_recent_live > 0) → lead with the handoff and name the fallback in one sentence, e.g. Resume {slug} (last session's thread) via /handoffs — or /next safe for fresh work. A warm thread beats a cold start, but the user keeps the choice./next./triage or pulling a Jira ticket.Format as one line:
---
**Next:** _{suggestion}_Single sentence. Pick one action — don't list a menu. The one exception is the handoff-fallback branch above, which deliberately names a single fallback (Resume {slug} … — or /next safe …) so the morning "resume or start fresh?" choice stays visible in one sentence.
Each block is independent — a failure in one must not prevent the others from rendering.
_Not in a git repository._ in its place._Jira MCP not configured._._GitHub CLI not authenticated (run \gh auth login\)._._No beads in this repo._.MARKER=none — skip that block silently; §4 already covers the one repo./landscape quick skips it.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.