/load-context
To load the most current project context; MUST during prep.
$ npx -y skills add griddynamics/rosetta --skill load-context --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/load-context
Context preview
The summary Claude sees to decide when to auto-load this skill.
To load the most current project context; MUST during prep.
SKILL.md
load-context.SKILL.mdname: load-context
description: "To load the most current project context; MUST during prep."
license: Apache-2.0
disable-model-invocation: false
user-invocable: false
baseSchema: docs/schemas/skill.md
**Mode detection:**
- If `RUNNING AS A PLUGIN` is in context → Plugin mode
- Else if `get_context_instructions` tool is available → MCP mode
- Else → Adhoc mode
**Plugin mode:**
1. Bootstrap rules are loaded via startup hook — do NOT assume prep steps are done 2. Create todo tasks (search/discover the tool if needed) 3. Locate and execute ALL prep steps defined in the loaded bootstrap rules in full 4. DO NOT proceed to any action until all prep steps are confirmed complete 5. Identify and load the most matching workflow — a must if you are not subagent 6. Create and update all todo tasks per workflow
**MCP mode:**
1. Call `get_context_instructions` (blocking gate — do not proceed until complete) 2. If output truncated and file path provided — read entire file, preview is NOT enough 3. Create todo tasks (search/discover the tool if needed) 4. Execute ALL prep steps returned — no skipping, no partial execution 5. DO NOT proceed to any action until all prep steps are confirmed complete 6. Identify and load the most matching workflow — a must if you are not subagent 7. Create and update all todo tasks per workflow
**Adhoc mode:**
1. Read `docs/CONTEXT.md` and `docs/ARCHITECTURE.md` in full 2. List `docs/*.md` and workspace root `*.md` files to gather context
**All modes:**
- Treat context loading as a hard blocking gate, not a background task
- Explicitly confirm all prep steps complete before responding, planning, or executing anything
- If anything fails or is unclear — stop and ask user
Read more
name: load-context description: "To load the most current project context; MUST during prep." license: Apache-2.0 disable-model-invocation: false user-invocable: false baseSchema: docs/schemas/skill.md
**Mode detection:**
- If `RUNNING AS A PLUGIN` is in context → Plugin mode
- Else if `get_context_instructions` tool is available → MCP mode
- Else → Adhoc mode
**Plugin mode:**
1. Bootstrap rules are loaded via startup hook — do NOT assume prep steps are done 2. Create todo tasks (search/discover the tool if needed) 3. Locate and execute ALL prep steps defined in the loaded bootstrap rules in full 4. DO NOT proceed to any action until all prep steps are confirmed complete 5. Identify and load the most matching workflow — a must if you are not subagent 6. Create and update all todo tasks per workflow
**MCP mode:**
1. Call `get_context_instructions` (blocking gate — do not proceed until complete) 2. If output truncated and file path provided — read entire file, preview is NOT enough 3. Create todo tasks (search/discover the tool if needed) 4. Execute ALL prep steps returned — no skipping, no partial execution 5. DO NOT proceed to any action until all prep steps are confirmed complete 6. Identify and load the most matching workflow — a must if you are not subagent 7. Create and update all todo tasks per workflow
**Adhoc mode:**
1. Read `docs/CONTEXT.md` and `docs/ARCHITECTURE.md` in full 2. List `docs/*.md` and workspace root `*.md` files to gather context
**All modes:**
- Treat context loading as a hard blocking gate, not a background task
- Explicitly confirm all prep steps complete before responding, planning, or executing anything
- If anything fails or is unclear — stop and ask user
Repo: griddynamics/rosetta
Other skills on rosetta.
- /collect-github-stats
Collect GitHub repo health/usage stats into merged JSON.
Open skill - /compress-prompt
Compress a Rosetta KB prompt artifact (skill · workflow · phase · rule · agent · template · generic) by stripping structural tautology and ineffective scaffolding while preserving every importance-bearing token. Use when the user asks to compress, shorten, tighten, densify, or
Open skill - /documentation
To write, design, review, simplify, restructure, or standardize OSS project documentation
Open skill - /merge-main
To merge main branch, exact context and instructions
Open skill - /sync-web-site
To synchronize web site with changes made to local *.md files
Open skill - /update-change-log
To synchronize CHANGELOG.md with changes made last week (mon - sun)
Open skill

