スキル一覧に戻る
Sounder25

impasse-detector

by Sounder25

Operational capabilities for high-leverage AI coding agents. Features deterministic execution, 100% tested safety gates, impasse detection, and adversarial review. Includes 'Gold Standard' meta-skills like Pre-Action Guard and Failure Postmortem to prevent loops and data loss.

8🍴 3📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: Impasse Detector description: Detects when the agent is stuck in a reasoning loop or unproductive state by analyzing tool usage and sentiment patterns. version: 1.0.0 author: Antigravity Skills Library created: 2026-01-16 leverage_score: 5/5

SKILL-017: Impasse Detector

Overview

Critical meta-cognitive skill that acts as a circuit breaker for unproductive loops. It analyzes recent conversation history and tool outputs to detect "stuck" states, preventing token wastage on failing paths and forcing escalation or delegation.

Trigger Phrases

  • check logic
  • am i stuck
  • detect loop
  • impasse check

Inputs

ParameterTypeRequiredDefaultDescription
--TranscriptPathstringNo$nullPath to conversation log/json
--ContentstringNo$nullDirect string content to analyze
--LookbackintNo10Number of recent turns to analyze

Outputs

1. Analysis Result (JSON)

{
  "status": "IMPASSE",
  "confidence": 0.95,
  "reasons": [
    "Apology loop detected (4 occurrences)",
    "High frequency of file reads (6 in window)"
  ],
  "recommendation": "ESCALATE_TO_USER",
  "score": 80
}

2. Status Codes

  • CLEAR: No issues detected.
  • IMPASSE: Significant loop/blockage detected.
  • UNKNOWN: Insufficient data.

Preconditions

  1. Access to conversation history OR a provided transcript string.
  2. PowerShell 5.1+ or Core 7+.

Safety/QA Checks

  1. Read-Only: This skill only analyzes text; it does not modify state.
  2. Fail-Safe: If input is missing/malformed, defaults to "UNKNOWN" rather than crashing.

Stop Conditions

ConditionAction
No input providedReturn status "UNKNOWN" (0 confidence)
File not foundReturn error JSON

Implementation

See scripts/detect_impasse.ps1.

Integration with Other Skills

All agent loops should:

  1. Call SKILL-017 every 5-10 turns.
  2. If status is IMPASSE, trigger SKILL-020 (Failure Postmortem) AND SKILL-010 (Async Feedback).
  3. If score > 90, stop execution and warn user.

スコア

総合スコア

70/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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