status

Displays a team dashboard of active feature branches, open PRs, preview URLs, and release status.

Updated Aug 13, 2026
One-click install
npx skills add https://github.com/Evolutionary-Leadership/harness --skill status-evolutionary-leadership
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: status
Source: https://github.com/Evolutionary-Leadership/harness/tree/main/.claude/setup/railway/.claude/skills/status
Command: npx skills add https://github.com/Evolutionary-Leadership/harness --skill status-evolutionary-leadership

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams working across many feature branches and pull requests lose track of what is in flight, what needs review, and what has shipped. This Skill aggregates Git branches, GitHub PRs, Railway preview URLs, and release tags into one concise dashboard so you can see team state at a glance. ## Core Features & Use Cases - Active feature tracking: Lists remote feature branches, their open PRs with review and check status, and their Railway preview URLs. - Release visibility: Shows the latest tagged release and all unreleased commits on preprod since that tag. - Action item highlights: Flags PRs with failing checks, missing reviewers, stale branches, missing preview environments, and large unreleased backlogs. - Use Case: At the start of a standup, run the status command to instantly see that feature/dark-mode has an approved PR ready to merge while feature/api-caching has had no activity in over a week. ## Quick Start Ask the assistant to show the current team status dashboard with active features, pending PRs, and release state.

Frequently Asked Questions about status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I see all open PRs and feature branches in one view?

Run the status command to get a dashboard combining remote feature branches, open PRs against preprod with review and check status, and each branch's Railway preview URL. It uses git branch -r and gh pr list to gather the data.

How to check unreleased changes on a preprod branch?

The dashboard computes commits on origin/preprod since the latest git tag using git log <tag>..origin/preprod. If no tag exists yet, it shows the 20 most recent preprod commits instead.

Does this work with the GitHub CLI and Railway previews?

Yes, it uses the gh CLI to list open PRs with reviews and status checks, and reads a .railway-url file from each feature branch to display its Railway preview environment URL. Branches without the file are flagged as still provisioning.

Why is a feature branch missing from the status dashboard?

Only remote branches matching origin/feature/ are listed, so local-only branches will not appear. Run git fetch origin --prune first, which the Skill does automatically, to ensure stale or missing remote refs are corrected.

What problems does the status dashboard flag automatically?

It highlights PRs with failing checks, PRs without reviewers, feature branches inactive for 7 or more days, large unreleased backlogs on preprod suggesting a release, and branches missing a Railway preview URL.