← Back to list

chain-link
by advpropsys
Self hosted Claude Code shared memory & artifact storage in ~1k LOC.
⭐ 18🍴 1📅 Jan 17, 2026
SKILL.md
name: chain-link description: Save a work checkpoint to preserve context for multi-session projects. Use when pausing work on a feature, completing a milestone, or before ending a session.
Chain Link - Save Work Checkpoint
Save your current work context as a chain link for later retrieval.
Usage
/chain-link [chain-name] [slug]
Instructions
-
Gather Context - Analyze the current session:
- What was accomplished
- Key technical decisions made
- Code changes with file paths
- Unresolved issues or blockers
- Next steps
-
Generate Chain Content - Structure as XML:
<chain-link>
<summary>Brief overview of work done</summary>
<completed>
<item>Task or feature completed</item>
<item>Another completed item</item>
</completed>
<code-changes>
<file path="src/auth.rs">Added JWT validation middleware</file>
<file path="src/routes.rs">New /login endpoint</file>
</code-changes>
<decisions>
<decision reason="Performance">Used Redis for session storage</decision>
<decision reason="Security">JWT tokens expire after 1 hour</decision>
</decisions>
<issues>
<issue status="blocked">Rate limiting not implemented yet</issue>
<issue status="investigation">Memory leak in connection pool</issue>
</issues>
<next-steps>
<step priority="high">Implement rate limiting middleware</step>
<step priority="medium">Add refresh token support</step>
</next-steps>
</chain-link>
- Save via MCP - Call
tinymem_chain_link:session_id: from TINYMEM_SESSION envchain_name: provided or infer from task contextslug: provided or generate from summary (kebab-case)content: XML structured content above
Examples
User: /chain-link auth-feature jwt-middleware
→ Saves checkpoint with chain "auth-feature", slug "jwt-middleware"
User: /chain-link
→ Ask user for chain name, auto-generate slug from work summary
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon