← Back to list

validate-project
by jrmatherly
AI/MCP Multi-Repo Workspace - Shared configuration and documentation
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: validate-project description: Run full CI validation for the current project directory version: 1.0.0 author: AI Team tags: [ci, validation, pre-commit]
Validate Project
Run complete pre-commit validation for the current project.
When to Use
- Before committing changes
- After major refactoring
- When CI is failing and you need to reproduce locally
- Before creating a pull request
Available Operations
- Go Validation: generate, tidy, fmt, lint, vet, test
- Frontend Validation: lint, format, type-check, test
- Clean Check: Verify no uncommitted changes from generation
Instructions
Step 1: Detect Project Type
Check for these indicators:
go.mod→ Go projectpackage.jsoninui/→ Has frontend- Directory name → Project identification
Step 2: Go Validation (if applicable)
# 1. Generate code (if applicable)
if grep -q "go:generate" **/*.go 2>/dev/null; then
go generate ./...
fi
# 2. Tidy dependencies
go mod tidy
# 3. Format code
go fmt ./...
# 4. Lint (if config exists)
if [ -f .golangci.yml ] || [ -f .golangci.yaml ]; then
golangci-lint run
fi
# 5. Vet
go vet ./...
# 6. Test
go test -short ./...
Step 3: Frontend Validation (if applicable)
cd ui/user
pnpm run ci
Step 4: Clean Check
if [ -n "$(git status --porcelain)" ]; then
echo "ERROR: Uncommitted changes after generate/tidy"
git status --short
exit 1
fi
Resources
Load these Level 3 resources as needed:
scripts/validate.sh- Complete validation script (run directly)references/ci-pipeline.md- CI pipeline documentation
Examples
Example 1: Go Project
User asks: "Validate my changes before committing"
Response:
- Detect go.mod → Go project
- Run go generate, tidy, fmt, lint, vet, test
- Check for uncommitted changes
- Report status with ✓ or ✗ for each step
Example 2: Full-Stack Project (obot-entraid)
User asks: "Run full validation"
Response:
- Run Go validation in root
- Run frontend validation in ui/user
- Check for uncommitted changes
- Report combined status
Notes
- Stop on first failure for faster feedback
- Always run clean check last to catch generated file changes
- Use
--shortflag for tests to skip long-running integration tests
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

