← Back to list

verification
by linkpellow
⭐ 0🍴 0📅 Jan 19, 2026
SKILL.md
name: verification description: Mandatory deployment verification protocol with real-time log monitoring
Mandatory Deployment & Real-time Validation Protocol
🎯 Objective
Verify deployments immediately using active log streaming. No sleep delays - monitor in real-time until success signatures appear.
📋 Protocol Steps
1. Execute Deployment
railway up --service scrapegoat-worker-swarm --detach
2. Immediate Active Monitoring (No Sleep)
DO NOT SLEEP. Start log streaming immediately:
railway logs --service scrapegoat-worker-swarm --tail 100 -f
3. Monitor for Exact Success Signatures
Required Signatures (All Must Appear):
- ✅
✅ Connected to PostgreSQL Persistence Layer - ✅
✅ Isomorphic Intelligence Injected: [selectorParser, cssParser, locatorGenerators] - ✅
✅ CreepJS Trust Score: 100.0% - HUMAN
Alternative Patterns:
PostgreSQL Persistence Layer(partial match)Isomorphic Intelligence(partial match)Trust Score.*100\.0.*HUMAN(regex pattern)
✅ Exit Condition
Exit the tail once ALL signatures appear:
- ✅ PostgreSQL connection confirmed
- ✅ Isomorphic intelligence injected
- ✅ 100% Human trust score achieved
Then confirm: "Phase 3 is LIVE" (or appropriate phase number)
🚨 Critical Rules
- No Sleep Delays: Use
-fflag for real-time streaming - Exact Signatures: Monitor for exact log messages (case-sensitive)
- All Signatures Required: Do not exit until all three appear
- Immediate Action: Start monitoring immediately after deployment command
📝 Usage Example
# Step 1: Deploy
railway up --service scrapegoat-worker-swarm --detach
# Step 2: Monitor (no sleep)
railway logs --service scrapegoat-worker-swarm --tail 100 -f | \
grep --line-buffered -E "(PostgreSQL Persistence|Isomorphic Intelligence|Trust Score.*100\.0.*HUMAN)"
# Step 3: Exit when all signatures appear
# Confirm: "Phase 3 is LIVE"
🎯 Success Criteria
Deployment is verified when:
- ✅ All three success signatures appear in logs
- ✅ No errors or warnings in deployment sequence
- ✅ Worker continues running (not exited)
If signatures don't appear:
- ❌ Check build logs for errors
- ❌ Verify environment variables are set
- ❌ Check service health in Railway Dashboard
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon