---
name: Source Command Check
slug: source-command-check
category: Quality
description: Source Command Check runs the full local validation sequence for the migrated `check` command. Use it to run frontend lint, tests, build, and Rust `cargo check`, stopping at the first failure and reporting the output.
github: "https://github.com/shirenchuang/agentbro/tree/main/.agents/skills/source-command-check"
language: Rust
stars: 212
forks: 30
install: "npx degit https://github.com/shirenchuang/agentbro/tree/main/.agents/skills/source-command-check ~/.claude/skills/source-command-check"
installs_to: ~/.claude/skills/source-command-check
source_path: .agents/skills/source-command-check/SKILL.md
collection_size: 3
category_size: 1557
collection_url: "https://dirskills.com/collections/shirenchuang/agentbro"
added: 2026-09-04T05:26:15.783Z
last_synced: 2026-09-04T05:26:15.783Z
canonical_url: "https://dirskills.com/skills/source-command-check"
---

# Source Command Check

Source Command Check runs the full local validation sequence for the migrated `check` command. Use it to run frontend lint, tests, build, and Rust `cargo check`, stopping at the first failure and reporting the output.

**Install:**

```bash
npx degit https://github.com/shirenchuang/agentbro/tree/main/.agents/skills/source-command-check ~/.claude/skills/source-command-check
```

## README

# source-command-check

Use this skill when the user asks to run the migrated source command `check`.

## Command Template

按顺序执行下面四条命令,任何一条失败都立即停下,并把失败命令名和最后 30 行输出汇报给我。**不要自己 patch 错误**,只汇报。

1. `pnpm lint`
2. `pnpm test:run`
3. `pnpm build`
4. `cargo check --manifest-path src-tauri/Cargo.toml`

成功的话,简短回报每一步的耗时即可。
