スキル一覧に戻る
gricha

validate

by gricha

Workspace orchestration for local development environments using docker-in-docker

10🍴 1📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: validate description: Run validation checks - determines whether to use fast (validate) or full (validate:full) based on changed files

Validate Skill

Run the appropriate validation for your changes.

Commands

CommandWhat it doesWhen to use
bun run checklint + format + typecheckQuick syntax check
bun run validatecheck + build TS/worker + unit testsDefault for most changes
bun run validate:corevalidate + integration testsCore behavior changes

Decision Logic

  1. Check what files changed using git status or git diff --name-only

  2. Use bun run validate:core if changes touch:

    • src/agent/ (core agent behavior)
    • src/workspace/ (workspace lifecycle)
    • src/terminal/ (terminal/WebSocket)
  3. Use bun run validate for everything else

  4. Run specific tests relevant to your changes instead of full suites:

    bun test test/unit/relevant.test.ts
    bun test test/integration/relevant.test.ts
    bun test web/e2e/relevant.spec.ts
    

Steps

  1. Check changed files:

    git diff --name-only HEAD
    
  2. Run validation + relevant tests:

    bun run validate
    # Then run specific tests for your changes
    bun test test/unit/relevant.test.ts
    
  3. If validation fails, fix issues and re-run

Run Review Agents in Parallel

While validation runs, spawn review subagents in parallel based on what changed:

Changed filesRun agent
Auth, user input, data handlingsecurity-review
Loops, data fetching, DB queriesperf-review
web/ or mobile/ (.tsx/.jsx)react-review

These agents review your local changes and report issues. Run them in parallel with validation to save time.

Notes

  • validate is fast (~30s), validate:core adds integration tests (~1-2min)
  • CI runs full validation on PRs, so targeted tests are usually sufficient locally

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です