ソース情報
- リポジトリ
- vstorm-co/agenticos
- ソースの最終更新活動
- 2026年9月2日 09:15
- 検出された SKILL.md の言語
- 英語
- スター
- 17
- フォーク
- 6
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/vstorm-co/agenticos --skill dependency-upgrade-assessmentコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | Dependency upgrade assessment |
| description | Judge whether an upgrade is safe, and say what to test. |
| category | engineering |
Two questions: what breaks, and what happens if we do nothing.
The changelog between the two versions — every one, not just the latest · breaking changes and deprecations · security advisories fixed · whether the minimum runtime version moved · transitive dependency changes.
Security — has a deadline, and it is short. Breaking — needs code changes; list them with file paths. Routine — batch it.
Name the specific paths this dependency is on. "Run the suite" is not an assessment — the suite passing is necessary and, for a library that changes behaviour rather than signatures, not sufficient.
Version drift compounds. Four majors behind is a project; one is an afternoon. Say which this is becoming.
Upgrade a major version in the same change as a feature, or trust a green suite on a library whose defaults changed.
Work with messaging-channel bots — Telegram, Slack or Mattermost. Register a bot, route inbound messages through an agent, choose webhook vs polling, handle an @slug mention, or add a new channel adapter. Use when wiring chat into a messaging platform or debugging bot delivery, identity linking or "the bot answered as itself".
Change the agent spec — add or remove a field, rename one, tighten a rule, bump SPEC_VERSION, change publish-time validation, or touch YAML export/import. Use whenever editing app/agents/spec.py or anything that reads a stored spec. Every published agent and every client git repository holds a copy of this format, so a change that only works forwards breaks agents nobody touched.
Work with MCP servers — connect one, add an entry to the server catalog, debug "the agent cannot see my MCP tools" or a failing OAuth flow, or change how connections are probed, prefixed or filtered. Use when the ask involves an external SaaS tool (GitHub, Linear, Notion, Slack, Stripe, Postgres…) and before writing a capability that would just be an API client for one.