Best for
- "看看现在的项目到底出了什么问题" / "make it right" / "what's broken"
- "为什么我的反馈还没上线"
- "为什么很久没有新 build / 没提交 App Store"
jianshuo/claude-skills/wjs-auditing-project/SKILL.md
Use it for operations tasks; the detail page covers purpose, installation, and practical steps.
Decision brief
md / ROADMAP), unreleased commits, and log errors. Runs read-only investigation, presents a grouped checklist, fixes only after explicit user confirmation.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/jianshuo/claude-skills --skill "wjs-auditing-project"Inspect the Agent Skill "wjs-auditing-project" from https://github.com/jianshuo/claude-skills/blob/82e33225aab9b2f5dcd6c8560d956b6794a13c0e/wjs-auditing-project/SKILL.md at commit 82e33225aab9b2f5dcd6c8560d956b6794a13c0e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Run all the read-only checks in one message with parallel Bash calls. Don't ask the user which to run; run them all. Many will return "nothing wrong" — that's fine, those just don't show up in the checklist.
Once the user confirms (full set, subset, or "all green and yellow but not the App Store one"):
"看看现在的项目到底出了什么问题" / "make it right" / "what's broken"
git status — uncommitted work?
gh pr list --state open --json number,title,isDraft,mergeable,mergeStateStatus,updatedAt,author,headRefName
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 86/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 112 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Holistic project-state audit. Find everything that's stalled, broken, or diverged from the plan — then fix it together after the user confirms the checklist.
Hard two-phase split:
Never collapse the phases. The user wants to see the full picture before any action. "Just go ahead and fix everything" is fine as confirmation, but you still produce the checklist first so they can scan it.
Run all the read-only checks in one message with parallel Bash calls. Don't ask the user which to run; run them all. Many will return "nothing wrong" — that's fine, those just don't show up in the checklist.
git status — uncommitted work?git stash list — forgotten stashes?git branch -vv — local branches, ahead/behind trackinggit log --oneline main..HEAD — what's on current branch not in maingit fetch origin --prune && git log --oneline HEAD..@{upstream} — what's on remote not localgit branch -r --merged main and git branch -r --no-merged main — remote branches still floatinggh pr list --state open --json number,title,isDraft,mergeable,mergeStateStatus,updatedAt,author,headRefNamemergeStateStatus ≠ CLEAN: capture the failing checks via gh pr checks <num>gh pr list --author "app/claude" --state all --limit 20 — any merged but not yet in a TestFlight build? Any stuck open?gh run list --limit 20 --json conclusion,name,headBranch,createdAt,databaseId,eventgh run list --status failure --limit 10 — failures specificallymain or on an open PR's branch: gh run view <id> --log-failed | tail -100 to capture the actual errorgrep -E "MARKETING_VERSION|CURRENT_PROJECT_VERSION" *.xcodeproj/project.pbxproj | sort -u — current version + build numbergit tag --sort=-creatordate | head -5 — recent release tagsgit log --oneline <last-tag>..main — commits since last tagged releasefastlane/ config and fastlane/report.xml (if present) for last pilot / deliver invocationgit log -1 --format="%ai %s" -- fastlane/ — last fastlane changegit log --all --grep="bump\|version\|build" -10 --oneline — recent version bumpsTODOS.md, CHANGELOG.md, APP_STORE_SUBMISSION_GUIDE.md, ROADMAP.md, docs/plan*.md if any existgrep -rn "TODO\|FIXME\|XXX" --include="*.swift" . — drift markers in sourcels -t ~/Library/Logs/DiagnosticReports/Cathier* 2>/dev/null | head -5 — recent crash reports for the applog show --predicate 'process == "Cathier"' --last 1d --style compact 2>/dev/null | grep -iE "error|fault" | head -20 — recent runtime errors (skip silently if no install on this Mac)ls -t ~/Library/Developer/Xcode/DerivedData/*/Logs/Build/*.xcactivitylog 2>/dev/null | head -3 — last build attempts (existence + mtime; don't try to parse)Per memory: in-app feedback creates @claude PRs that auto-merge into main. To answer "why isn't my feedback in the app":
gh pr list --author "app/claude" --state all)Output one grouped markdown checklist. Each item must contain: what's wrong, evidence (numbers/dates/file paths), and a proposed action phrased so the user can say yes/no. Group by urgency:
## What I found
### 🔴 Blocking (these gate everything else)
- [ ] PR #42 "Add jokes redesign": 3 failing checks (SwiftLint, build, tests). Last commit 2026-04-30. → Read logs, fix, push?
- [ ] main is 7 commits ahead of last tag v1.4.0 (2026-03-22). No TestFlight build since then. → Tag v1.5.0 and prep release notes?
### 🟡 Open work
- [ ] Local branch `home-simplification` has 5 commits, no open PR, last activity 2026-05-08. → Open PR against main?
- [ ] Stash "WIP: brain trainer stats" from 2026-04-02. → Show diff and decide drop/apply?
### 🟢 Plan drift (TODOS.md / fastlane)
- [ ] TODOS.md line 14: "Submit App Store build by 2026-04-30" — overdue 11d, no `fastlane pilot` invocation since 2026-03-12.
- [ ] TODOS.md line 22: "Hook up haptics on streak page" — no matching commit on main.
- [ ] 2 auto-merged @claude PRs (#88, #91) from in-app feedback merged after last TestFlight build — user feedback shipped to main but not to TestFlight.
### Logs / errors
- [ ] 23 errors in last 24h matching "NSURLErrorDomain -1009" (offline path) — investigate or note as expected?
- [ ] 1 crash report from 2026-05-10 in DiagnosticReports — pull stack and triage?
### Looks fine
- Working tree clean, no orphan branches on origin, no failed CI on main this week.
End with: "想让我把这些都修好吗?还是挑一部分?或者先讨论某一项?"
Once the user confirms (full set, subset, or "all green and yellow but not the App Store one"):
gh pr create for an unpushed branchgh run rerun <id> after diagnosing why it failed (don't blindly rerun flaky-looking failures — find the root cause first)gh pr merge --squash --auto) if the user said yes for that specific PRMARKETING_VERSION / CURRENT_PROJECT_VERSION in project.pbxprojgit tag (don't push tag until user confirms)Print the exact command they should run with a leading !:
! fastlane pilot upload — App Store / TestFlight submission signs the binary; needs them! open Cathier.xcodeproj — anything that needs Xcode archive UIgit reset --hard, git push --force, deleting branches| Finding | Standard fix |
|---|---|
| Local branch ahead of main, no PR | Rebase on main, push, gh pr create |
| PR failing CI on same step twice | Read failed log, fix root cause, don't blindly rerun |
| Unreleased commits + stale TestFlight | Bump build number, tag, write release notes, prompt user to run fastlane pilot |
| Stash >30 days, unclear context | Show git stash show -p <n> to user, ask drop/apply |
| TODOS.md item with no commit | Surface to user — descoped or forgotten? Don't assume |
| Auto-merged feedback PRs newer than last build | The fix is a new TestFlight build, not more code changes |
fastlane/ untouched but plan says App Store deadline passed | Surface the deadline + last submission date; user decides priority |
| Thought | Reality |
|---|---|
| "I'll just fix it and skip the checklist" | No. The user asked specifically for the audit-then-confirm flow. |
| "The PR looks safe to merge, I'll do it" | Only if they confirmed this PR by name in their reply. |
| "I'll force-push to clean up history" | Never without explicit per-action confirmation. |
| "Let me close that stuck PR to tidy up" | Investigate first; the work may be salvageable. |
| "I'll submit to App Store on their behalf" | Never. Print the ! fastlane … command and stop. |
| "The crash report is probably nothing" | Pull the stack and surface it. Let the user decide. |
| "Plan item is old, must be obsolete" | Ask. Don't delete plan entries. |
/Users/jianshuo/code/Cathier. Honor wherever invoked.fastlane/ for App Store / TestFlight.TODOS.md and APP_STORE_SUBMISSION_GUIDE.md. Read both.app/claude opens a PR → auto-merge to main. So "why isn't my feedback in the app" usually means the merge happened but no new build was cut. Check TestFlight build date vs PR merge date before investigating the code.gh is authenticated. fastlane is installed (Gemfile present).Alternatives
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
dotnet/skills
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing
aaron-he-zhu/aaron-marketing-skills
Use when the user asks to "set up my founder social-selling routine", "build a daily engagement block for target accounts", or "turn funding / hiring signals into selling plays"; produces the founder/seller daily operating block — a time-boxed engagement-block spec (substantive value-add comments on target-account posts, never a pitch), warm-touch-before-ask cadence rules, trigger-response plays consuming the social-pulse-monitor B2B trigger watchlist (funding / hiring / launch signals), and a q