← スキル一覧に戻る

savecontext
by greenfieldlabs-inc
The operating layer for AI coding agents.
⭐ 14🍴 1📅 2026年1月20日
SKILL.md
name: SaveContext description: Persistent memory for AI coding agents. USE WHEN user says "save context", "remember this", "checkpoint", "resume session", "prepare for compaction", "wrap up", OR when starting work on a project that may span sessions.
SaveContext
Save decisions, track progress, and maintain continuity across coding sessions.
Quick Actions
For most requests, use these patterns directly:
| User Says | Do This |
|---|---|
| "save this decision" | context_save key="..." value="..." category="decision" |
| "remember this" | context_save key="..." value="..." category="note" |
| "checkpoint" | context_checkpoint name="..." |
| "wrap up" | See WrapUp workflow |
| "resume [topic]" | Search sessions, then context_session_resume |
Workflow Routing
| Workflow | Trigger | File |
|---|---|---|
| QuickSave | "save", "remember", "note this" | Workflows/QuickSave.md |
| SessionStart | Starting work, "begin session" | Workflows/SessionStart.md |
| WrapUp | "wrap up", "end of day", "checkpoint everything" | Workflows/WrapUp.md |
| Resume | "resume", "continue", "pick up where I left off" | Workflows/Resume.md |
| Compaction | "prepare for compaction", context getting long | Workflows/Compaction.md |
| IssueTracking | "create issue", "track this bug" | Workflows/IssueTracking.md |
| Planning | "plan this feature", "implement [complex]", multi-task work | Workflows/Planning.md |
Examples
Example 1: Quick save during work
User: "remember that we chose JWT over sessions for auth"
→ context_save key="auth-decision" value="Chose JWT over sessions for stateless scaling" category="decision" priority="high"
→ Saved. No session management needed.
Example 2: Starting a work session
User: "let's work on the payment feature"
→ context_session_start name="payment-feature" description="Implementing Stripe integration"
→ Session started (or resumed if exists)
Example 3: Wrapping up
User: "wrap up for today"
→ Invokes WrapUp workflow
→ Saves progress, creates checkpoint, pauses session
Do NOT Automatically
- Start sessions for quick saves (just save the item)
- Run multiple tools when one suffices
- Load full reference docs unless user asks how something works
Reference
Full tool documentation: Workflows/Reference.md
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です