load-context

Solid

Rosetta MUST skill to load the most current context, extremely useful, fast, fully automated, especially for planning, helps understand what actually user wants, skipping leads to wrong execution path

AI & Automation 295 stars 57 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 90/100

Stars 20%
82
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
76
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

**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 ...

Details

Author
griddynamics
Repository
griddynamics/rosetta
Created
4 months ago
Last Updated
today
Language
TypeScript
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

managing-context

Discovers and loads relevant project context from markdown documentation before each task. Matches context documents based on keywords, file paths, and task types. Use at task start to access project plans, architecture, and implementation status.

1 Updated 1 weeks ago
Open330
AI & Automation Listed

contexts

Auto-router for context gathering. Detects whether the task needs codebase exploration or external knowledge research and dispatches accordingly. Trigger on "get context", "background on X", "context on X", "how does X work", architectural orientation, or any setup-before-coding request.

27 Updated 2 days ago
OutlineDriven
AI & Automation Listed

context-mode

Context-mode is an MCP server plugin that reduces context window usage by ~98% through sandboxed tool routing. MUST be applied whenever Claude is running inside a context-mode-enabled session — it is not optional. Trigger when: context-mode MCP server is present in the session; running Bash commands that produce more than 20 lines of output; reading files for analysis; fetching web pages and searching them; batch execution of multiple queries; or when you need to prevent raw tool outputs from flooding the context window. Key capabilities: routes Bash to ctx_execute / ctx_batch_execute (captures output, prevents bloat); routes Read to ctx_execute_file (raw content never enters context); routes WebFetch to ctx_fetch_and_index then ctx_search (fetch once, query indexed content on demand); enforces strict output rules (under 500 words, write artifacts to files, return only path + 1-line description). Ideal for: working in long-running sessions with large codebases; running multi-step debugging workflows that prod

0 Updated 4 days ago
Tekkiiiii