ソース情報
- リポジトリ
- tenstorrent/tt-xla
- ソースの最終更新活動
- 2026年4月30日 05:27
- 検出された SKILL.md の言語
- 英語
- スター
- 74
- フォーク
- 34
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tenstorrent/tt-xla --skill analyze-nightlyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Compare two nightly GitHub Actions runs and classify failures as new, persisting, or fixed
Fix transformers compatibility regressions in tt-xla and tt-forge-models after the pinned version was bumped. Called by the transformers-uplift CI orchestrator with a scope (api-check, model-test-uplifts, model-perf-uplift) and a captured failure context. Edits source-level only — no monkey-patching, no shims, no git operations.
Stash local changes, pull latest main, and display a structured commit summary. For tt_forge_models uplift commits, shows the affected models from the submodule log.
SOC 職業分類に基づく
SKILL.md を表示中
| name | analyze-nightly |
| description | Analyze a GitHub Actions run and summarize failures |
| disable-model-invocation | false |
| allowed-tools | Read, Read(/tmp/**), Write(/tmp/**), Glob, Grep, Bash(git clone *), Bash(gh run view *), Bash(gh run list *), Bash(gh run download *), Bash(gh pr view *), Bash(tee *), Bash(gh api *), Bash(gh api * > /tmp/**), Bash(wc -l /tmp/**), Bash(jq *), Bash(mkdir -p /tmp/**), Bash(rm -rf /tmp/**), Bash(for *) |
| context | fork |
| argument-hint | run-id [save] |
| model | opus |
Create a summary of test failures or job failures, grouped by ownership area:
Analyze the run with run-id $0 and create a summary of test failures:
gh CLI tool.
Run gh run view $0 --json jobs --jq '.jobs[].url' to fetch all job URLs,
which have the following format, from which you can extract {job-id}:
https://github.com/tenstorrent/tt-xla/actions/runs/{run-id}/job/{job-id}gh api subcommand. Discard any job
that was successfully completed, canceled, skipped, or is still in progress.
Focus only on jobs that failed!gh CLI tool. Analyze the logs in search for error messages,
failure messages, timeout messages, or any other text indicating a root cause
for the failure of that step of the job. Keywords to look for are error,
assert, assertion, failed, throw, failure, fatal, timeout, timed out, HTTP
error codes from 400 and 500 range, Linux exit codes corresponding to signals
processes can receive, etc. Don't limit yourself to only these keywords, there
may be others that indicate a root cause, these are just the most common ones.Output format that you need to follow (raw Markdown text):
# {ownership-area-name}
## {root-cause-1}
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
## {root-cause-2}
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
# {ownership-area-name}
## {root-cause-1}
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
## {root-cause-2}
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
- {test-or-step-name} ({arch-list}) -> [job-link]({url})
After producing the Markdown summary:
Analysis written to: /tmp/nightly-analysis-$0.mdAlways respect these additional constraints:
gh {subcommand} commands that may modify
the state of the GitHub repository (for example issue creation/deletion,
PR closing, branch manipulation etc.), especially when using the gh api
subcommand. Always use only read-only calls!