소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 3월 2일 06:27
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill tla-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
| name | tla-review |
| description | Comprehensive TLA+ specification review with checklist and automated validation |
| version | 1.0.0 |
| allowed-tools | ["Read","Grep","Write","mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_sany_parse","mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_sany_symbol","mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_tlc_smoke"] |
Run a comprehensive review of your TLA+ specification including parsing, symbol extraction, smoke testing, and best practices checklist.
IMPORTANT: Always use the MCP tools listed above. Never fall back to running Java or TLC commands via Bash.
/tla-review test-specs/Counter.tla
/tla-review test-specs/Counter.tla test-specs/Counter.cfg
/tla-review test-specs/Counter.tla --no-smoke
Note: If you typed @path.tla as the first argument, this skill strips the leading @ and validates the file exists.
--no-smoke flag present)Step 1: Normalize Spec Path
Take the spec file path provided as the argument to this skill. If it starts with @, strip the leading @.
Print Spec path: <spec_path>
Step 2: Validate File
.tlaStep 3: Parse Flags
Extract flags from the argument:
--no-smoke: Skip smoke test (default: smoke enabled)Step 4: Determine CFG Argument
Parse the second token from the argument (split by space, take second). If it ends with .cfg, treat it as the CFG_ARG.
Step 5: Run SANY Parser
Call mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_sany_parse with fileName=<spec_path>
Store result:
PARSE_SUCCESS=true/falsePARSE_ERRORS=<error list>Step 6: Extract Symbols
Call mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_sany_symbol with:
fileName=<spec_path>includeExtendedModules=falseStore result:
SYMBOLS=<symbol extraction result>CONSTANTS, VARIABLES, INIT, NEXT, SPEC, INVARIANTS, PROPERTIESStep 7: Run Smoke Test (if enabled)
If smoke is enabled (no --no-smoke flag):
Apply CFG selection algorithm (same as /tla-smoke):
Phase 1: Ensure precondition
Extract spec name and directory:
SPEC_DIR = dirname(SPEC_PATH)
SPEC_NAME = basename(SPEC_PATH, .tla)
Check preconditions in order:
If SPEC_DIR/SPEC_NAME.cfg exists:
Phase 1: Spec.cfg existsElse if SPEC_DIR/MC<SPEC_NAME>.tla AND SPEC_DIR/MC<SPEC_NAME>.cfg both exist:
Phase 1: MC pair existsElse if CFG_ARG is non-empty and exists:
CFG_ARG to SPEC_DIR/SPEC_NAME.cfg (non-clobbering)Phase 1: Copied cfgArg to SPEC_NAME.cfgElse if SPEC_DIR/SPEC_NAME.generated.cfg exists:
SPEC_DIR/SPEC_NAME.cfg (non-clobbering)Phase 1: Copied generated cfgElse:
Smoke test skipped: No config file foundSMOKE_SKIPPED=truePhase 2: Choose cfg
If precondition satisfied:
If CFG_ARG is non-empty:
CFG_ARG (copy if needed, same as /tla-smoke)Phase 2: Using explicit cfgArgElse:
Spec.cfg or MCSpec.cfg)Phase 2: Using default cfgStore final cfg path in FINAL_CFG.
Call mcp__plugin_tlaplus_tlaplus__tlaplus_mcp_tlc_smoke with:
fileName=<SPEC_PATH>cfgFile=<FINAL_CFG>extraJavaOpts=["-Dtlc2.TLC.stopAfter=3"]Store result:
SMOKE_SUCCESS=true/falseSMOKE_VIOLATIONS=<violation list>Step 8: Generate Review Report
Print comprehensive review summary:
═══════════════════════════════════════════════════════════
TLA+ SPECIFICATION REVIEW
═══════════════════════════════════════════════════════════
Spec: <SPEC_PATH>
─────────────────────────────────────────────────────────
1. SYNTAX & SEMANTICS (SANY Parser)
─────────────────────────────────────────────────────────
<if PARSE_SUCCESS>
Parsing successful. No syntax errors.
<else>
Parsing failed. Errors found:
<PARSE_ERRORS>
<endif>
─────────────────────────────────────────────────────────
2. STRUCTURE ANALYSIS (Symbol Extraction)
─────────────────────────────────────────────────────────
Constants: <CONSTANTS or "None">
Variables: <VARIABLES or "None">
Init: <INIT or "Not detected">
Next: <NEXT or "Not detected">
Spec: <SPEC or "Not detected">
Invariants: <INVARIANTS or "None">
Properties: <PROPERTIES or "None">
<if no INIT or no NEXT or no SPEC>
Warning: Missing behavior specification
- Ensure Init, Next, and Spec are defined
- Or define INIT/NEXT in .cfg file
<endif>
<if CONSTANTS non-empty>
Warning: Constants require assignment
- Edit .cfg file to assign concrete values
- Example: CONSTANT MaxValue = 10
<endif>
─────────────────────────────────────────────────────────
3. SMOKE TEST (3-second simulation)
─────────────────────────────────────────────────────────
<if SMOKE_SKIPPED>
Skipped (no config file or --no-smoke flag)
<else if SMOKE_SUCCESS>
Smoke test passed
CFG used: <FINAL_CFG>
No violations found in random simulation
<else>
Smoke test failed
CFG used: <FINAL_CFG>
Violations detected:
<SMOKE_VIOLATIONS>
<endif>
─────────────────────────────────────────────────────────
4. BEST PRACTICES CHECKLIST
─────────────────────────────────────────────────────────
<Check and report on:>
Module documentation
- Does module have header comment explaining purpose?
- Are complex operators documented?
Type invariants
- Are type invariants defined for all variables?
- Example: TypeInvariant == var \in ExpectedType
Safety properties
- Are safety invariants defined?
- Do they cover critical correctness conditions?
Liveness properties
- Are liveness properties defined if needed?
- Example: <>[]Termination
Constant bounds
- Are constants bounded to reasonable values?
- Large constants cause state explosion
Symmetry
- Can symmetry sets reduce state space?
- Example: SYMMETRY SymmetrySet
State constraints
- Are state constraints needed to limit exploration?
- Example: CONSTRAINT StateConstraint
─────────────────────────────────────────────────────────
5. RECOMMENDATIONS
─────────────────────────────────────────────────────────
<Generate specific recommendations based on findings:>
<if PARSE_ERRORS>
-> Fix syntax errors before proceeding
<endif>
<if no config file>
-> Run: /tla-symbols <SPEC_PATH>
<endif>
<if CONSTANTS non-empty and no config>
-> Assign constant values in .cfg file
<endif>
<if SMOKE_VIOLATIONS>
-> Fix violations found in smoke test
-> Run: /tla-check for full counterexample
<endif>
<if SMOKE_SUCCESS or SMOKE_SKIPPED>
-> Run: /tla-check for exhaustive verification
<endif>
<if no INVARIANTS>
-> Consider adding type and safety invariants
<endif>
<if no PROPERTIES>
-> Consider adding liveness properties if applicable
<endif>
═══════════════════════════════════════════════════════════
REVIEW COMPLETE
═══════════════════════════════════════════════════════════
═══════════════════════════════════════════════════════════
TLA+ SPECIFICATION REVIEW
═══════════════════════════════════════════════════════════
Spec: test-specs/Counter.tla
─────────────────────────────────────────────────────────
1. SYNTAX & SEMANTICS (SANY Parser)
─────────────────────────────────────────────────────────
Parsing successful. No syntax errors.
─────────────────────────────────────────────────────────
2. STRUCTURE ANALYSIS (Symbol Extraction)
─────────────────────────────────────────────────────────
Constants: MaxValue
Variables: count
Init: Init
Next: Next
Spec: Spec
Invariants: TypeInvariant, BoundInvariant
Properties: None
Warning: Constants require assignment
- Edit .cfg file to assign concrete values
- Example: CONSTANT MaxValue = 10
─────────────────────────────────────────────────────────
3. SMOKE TEST (3-second simulation)
─────────────────────────────────────────────────────────
Smoke test passed
CFG used: test-specs/Counter.cfg
No violations found in random simulation
─────────────────────────────────────────────────────────
4. BEST PRACTICES CHECKLIST
─────────────────────────────────────────────────────────
Module documentation - Header comment present
Type invariants - TypeInvariant defined
Safety properties - BoundInvariant defined
Liveness properties - None defined (may not be needed)
Constant bounds - MaxValue = 10 (reasonable)
Symmetry - Not applicable for this spec
State constraints - Not needed (small state space)
─────────────────────────────────────────────────────────
5. RECOMMENDATIONS
─────────────────────────────────────────────────────────
-> Run: /tla-check for exhaustive verification
-> Consider adding liveness properties if termination matters
═══════════════════════════════════════════════════════════
REVIEW COMPLETE
═══════════════════════════════════════════════════════════