@skilly-hand/skilly-hand 0.29.0 → 0.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/catalog/README.md +1 -0
- package/catalog/skills/context-handoff/SKILL.md +148 -0
- package/catalog/skills/context-handoff/assets/handoff-template.md +54 -0
- package/catalog/skills/context-handoff/manifest.json +33 -0
- package/package.json +1 -1
- package/packages/catalog/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/detectors/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,21 @@ All notable changes to this project are documented in this file.
|
|
|
16
16
|
### Removed
|
|
17
17
|
- _None._
|
|
18
18
|
|
|
19
|
+
## [0.29.1] - 2026-05-23
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.29.1)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- Added `context-handoff` for compact, privacy-aware session handoffs across agent chats.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- _None._
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- _None._
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- _None._
|
|
33
|
+
|
|
19
34
|
## [0.29.0] - 2026-05-23
|
|
20
35
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.29.0)
|
|
21
36
|
|
package/catalog/README.md
CHANGED
|
@@ -7,6 +7,7 @@ Published portable skills consumed by the `skilly-hand` CLI.
|
|
|
7
7
|
| `accessibility-audit` | Audit web accessibility against W3C WCAG 2.2 Level AA using framework-agnostic checks, remediation patterns, and portable command-line scanning. | frontend, accessibility, workflow, quality | all |
|
|
8
8
|
| `agents-root-orchestrator` | Author root AGENTS.md as a Where/What/When orchestrator that routes tasks and skill invocation clearly. | core, workflow, orchestration | all |
|
|
9
9
|
| `angular-guidelines` | Guide Angular code generation, review, and performance tuning using latest stable Angular verification, official Angular skill guidance, and modern framework best practices. Trigger: generating, reviewing, refactoring, or optimizing Angular code artifacts in Angular projects. | angular, frontend, workflow, best-practices | all |
|
|
10
|
+
| `context-handoff` | Capture compact, neutral, AI-ready Markdown handoffs that preserve session context across chats without becoming a full transcript or personal memory store. Trigger: summarizing, compacting, preserving, or handing off session context across chats. | core, workflow, memory, communication | all |
|
|
10
11
|
| `figma-mcp-0to1` | Guide users from Figma MCP installation and authentication through first canvas creation, with function-level tool coverage and operational recovery patterns. | figma, mcp, workflow, design | all |
|
|
11
12
|
| `forge-me-a-skill` | Create and standardize AI skills with reusable structure, metadata rules, and templates. | core, workflow, authoring | all |
|
|
12
13
|
| `frontend-design` | Project-aware frontend design skill that detects the existing tech stack, UI libraries, CSS variables, and design tokens before proposing any UI work. Supports greenfield projects via DESIGN.md context setup, taste-reference extraction, post-generation critique, visual refinement, and Motion/GSAP-aware motion polish. | frontend, design, workflow, ui, motion, greenfield | all |
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "context-handoff"
|
|
3
|
+
description: "Capture compact, neutral, AI-ready Markdown handoffs that preserve session context across chats without becoming a full transcript or personal memory store. Trigger: summarizing, compacting, preserving, or handing off session context across chats."
|
|
4
|
+
skillMetadata:
|
|
5
|
+
author: "skilly-hand"
|
|
6
|
+
last-edit: "2026-05-23"
|
|
7
|
+
license: "Apache-2.0"
|
|
8
|
+
version: "1.0.0"
|
|
9
|
+
changelog: "Added context-handoff skill for project-local session continuity; preserves compact verified context across chats without transcript bloat; affects catalog skill routing and handoff-writing workflows"
|
|
10
|
+
auto-invoke: "Summarizing, compacting, preserving, or handing off session context across chats"
|
|
11
|
+
allowed-tools:
|
|
12
|
+
- "Read"
|
|
13
|
+
- "Edit"
|
|
14
|
+
- "Write"
|
|
15
|
+
- "Glob"
|
|
16
|
+
- "Grep"
|
|
17
|
+
- "Bash"
|
|
18
|
+
- "Task"
|
|
19
|
+
---
|
|
20
|
+
# Context Handoff Guide
|
|
21
|
+
|
|
22
|
+
## When to Use
|
|
23
|
+
|
|
24
|
+
Use this skill when:
|
|
25
|
+
|
|
26
|
+
- A user asks to summarize, compact, preserve, or hand off session context.
|
|
27
|
+
- Work may continue in a later chat, agent session, branch, or review.
|
|
28
|
+
- Important decisions, current state, artifacts, unresolved questions, or next actions would otherwise be lost.
|
|
29
|
+
- A project needs a concise `.context/` Markdown handoff that is readable by humans and useful to future AI agents.
|
|
30
|
+
|
|
31
|
+
Do not use this skill for:
|
|
32
|
+
|
|
33
|
+
- Full transcript archiving by default.
|
|
34
|
+
- Personal journaling, private memory claims, or speculative profile building.
|
|
35
|
+
- Critiquing the session, evaluating the user, or adding opinions not requested.
|
|
36
|
+
- Replacing formal specs, issue trackers, changelogs, ADRs, or release notes when those are the better source of truth.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Critical Patterns
|
|
41
|
+
|
|
42
|
+
### Pattern 1: Store Project-Local Context
|
|
43
|
+
|
|
44
|
+
Write handoff files under `.context/` in the active project root.
|
|
45
|
+
|
|
46
|
+
Use this filename format:
|
|
47
|
+
|
|
48
|
+
```text
|
|
49
|
+
.context/YYYY-MM-DDTHHMMSSZ-context-handoff-<slug>.md
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
The folder is for project-local context handoffs. It is not personal memory, hidden long-term recall, or a place to dump raw chat history.
|
|
53
|
+
|
|
54
|
+
### Pattern 2: Capture Verified Context Only
|
|
55
|
+
|
|
56
|
+
Write as a professional transcriber and technical handoff writer:
|
|
57
|
+
|
|
58
|
+
- Preserve facts from the session, repository, commands, files, decisions, and user-provided constraints.
|
|
59
|
+
- Mark uncertainty explicitly as `Unknown`, `Unresolved`, or `Assumption`.
|
|
60
|
+
- Do not invent motivations, conclusions, files, tests, or status.
|
|
61
|
+
- Do not critique the user, the plan, or the implementation unless the user explicitly requested critique and it belongs in the handoff.
|
|
62
|
+
|
|
63
|
+
### Pattern 3: Prefer Compact Handoff Over Transcript
|
|
64
|
+
|
|
65
|
+
Default to a concise, structured handoff that a future agent can scan quickly.
|
|
66
|
+
|
|
67
|
+
Include:
|
|
68
|
+
|
|
69
|
+
- Purpose and current state.
|
|
70
|
+
- Key context and constraints.
|
|
71
|
+
- Decisions made.
|
|
72
|
+
- Artifacts touched or produced.
|
|
73
|
+
- Open questions and blockers.
|
|
74
|
+
- Next actions.
|
|
75
|
+
- Verification status.
|
|
76
|
+
- A resume prompt.
|
|
77
|
+
|
|
78
|
+
Exclude:
|
|
79
|
+
|
|
80
|
+
- Routine back-and-forth.
|
|
81
|
+
- Long command logs unless the exact output is essential.
|
|
82
|
+
- Sensitive data, secrets, credentials, tokens, or private personal details.
|
|
83
|
+
- Repeated explanations already captured in a durable project artifact.
|
|
84
|
+
|
|
85
|
+
### Pattern 4: Screen Before Writing
|
|
86
|
+
|
|
87
|
+
Before creating or updating a `.context/` file:
|
|
88
|
+
|
|
89
|
+
1. Check whether the handoff may include secrets, credentials, tokens, private personal data, or proprietary data the user did not ask to persist.
|
|
90
|
+
2. Redact sensitive values and describe them generically.
|
|
91
|
+
3. If the user explicitly asks to persist sensitive content, confirm before writing it.
|
|
92
|
+
4. Keep the handoff scoped to what future work needs.
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Decision Tree
|
|
97
|
+
|
|
98
|
+
```text
|
|
99
|
+
User asks to preserve or resume session context? -> Create `.context/` handoff
|
|
100
|
+
User asks for exact transcript or quotes? -> Ask whether full transcript is required
|
|
101
|
+
Formal requirement/spec/change log is needed? -> Route to the appropriate durable artifact
|
|
102
|
+
Sensitive content would be persisted? -> Redact or confirm before writing
|
|
103
|
+
Context is uncertain or inferred? -> Label as Unknown, Unresolved, or Assumption
|
|
104
|
+
Otherwise -> Write compact neutral handoff
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Examples
|
|
110
|
+
|
|
111
|
+
### Example 1: Handoff Request
|
|
112
|
+
|
|
113
|
+
```text
|
|
114
|
+
Request: "Summarize this session so we can continue tomorrow."
|
|
115
|
+
Action: Create `.context/2026-05-23T184512Z-context-handoff-auth-refactor.md` with current state, decisions, artifacts, open questions, next actions, verification, and resume prompt.
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Example 2: Privacy-Safe Capture
|
|
119
|
+
|
|
120
|
+
```text
|
|
121
|
+
Request: "Save the deployment notes, including the token I pasted."
|
|
122
|
+
Action: Redact the token, record that a deployment token was provided in-session, and confirm before persisting any exact secret value.
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Example 3: Not a Critique
|
|
126
|
+
|
|
127
|
+
```text
|
|
128
|
+
Request: "Make a handoff from this planning session."
|
|
129
|
+
Action: Record agreed scope, assumptions, unresolved decisions, and next steps. Do not rate the plan or add unsolicited objections.
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## Commands
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
mkdir -p .context
|
|
138
|
+
date -u +"%Y-%m-%dT%H%M%SZ"
|
|
139
|
+
rg -n "TODO|FIXME|Assumption|Unresolved" .context
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Resources
|
|
145
|
+
|
|
146
|
+
- Handoff template: [assets/handoff-template.md](assets/handoff-template.md)
|
|
147
|
+
- Related compact output skill: [../output-optimizer/SKILL.md](../output-optimizer/SKILL.md)
|
|
148
|
+
- Related planning workflow: [../spec-driven-development/SKILL.md](../spec-driven-development/SKILL.md)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# {Title}
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
id: "{YYYY-MM-DDTHHMMSSZ-context-handoff-slug}"
|
|
5
|
+
title: "{Title}"
|
|
6
|
+
created_at: "{YYYY-MM-DDTHHMMSSZ}"
|
|
7
|
+
source: "{session | repo | review | implementation | planning}"
|
|
8
|
+
status: "{draft | ready | superseded}"
|
|
9
|
+
tags: ["context-handoff"]
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Purpose
|
|
13
|
+
|
|
14
|
+
{Why this handoff exists and what future work it should enable.}
|
|
15
|
+
|
|
16
|
+
## Current State
|
|
17
|
+
|
|
18
|
+
{Verified state of the work, repo, artifacts, branch, tests, or decisions at the time of capture.}
|
|
19
|
+
|
|
20
|
+
## Key Context
|
|
21
|
+
|
|
22
|
+
- {Important fact, constraint, preference, or dependency.}
|
|
23
|
+
- {Important fact, constraint, preference, or dependency.}
|
|
24
|
+
|
|
25
|
+
## Decisions
|
|
26
|
+
|
|
27
|
+
- {Decision made, with brief reason if known.}
|
|
28
|
+
- {Decision made, with brief reason if known.}
|
|
29
|
+
|
|
30
|
+
## Artifacts
|
|
31
|
+
|
|
32
|
+
- `{path-or-url}`: {what it is and why it matters.}
|
|
33
|
+
- `{path-or-url}`: {what it is and why it matters.}
|
|
34
|
+
|
|
35
|
+
## Open Questions
|
|
36
|
+
|
|
37
|
+
- {Unknown, unresolved point, or decision still needed.}
|
|
38
|
+
- {Unknown, unresolved point, or decision still needed.}
|
|
39
|
+
|
|
40
|
+
## Next Actions
|
|
41
|
+
|
|
42
|
+
1. {Next concrete step.}
|
|
43
|
+
2. {Next concrete step.}
|
|
44
|
+
3. {Next concrete step.}
|
|
45
|
+
|
|
46
|
+
## Verification
|
|
47
|
+
|
|
48
|
+
{Checks run, checks not run, observed results, and remaining verification risk.}
|
|
49
|
+
|
|
50
|
+
## Resume Prompt
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
Continue from this handoff. First read this file, verify current repo state, then proceed with: {specific next objective}.
|
|
54
|
+
```
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "context-handoff",
|
|
3
|
+
"title": "Context Handoff",
|
|
4
|
+
"description": "Capture compact, neutral, AI-ready Markdown handoffs that preserve session context across chats without becoming a full transcript or personal memory store. Trigger: summarizing, compacting, preserving, or handing off session context across chats.",
|
|
5
|
+
"portable": true,
|
|
6
|
+
"tags": ["core", "workflow", "memory", "communication"],
|
|
7
|
+
"detectors": ["always"],
|
|
8
|
+
"detectionTriggers": ["always"],
|
|
9
|
+
"installsFor": ["all"],
|
|
10
|
+
"agentSupport": ["codex", "claude", "cursor", "gemini", "copilot", "antigravity", "windsurf", "trae"],
|
|
11
|
+
"skillMetadata": {
|
|
12
|
+
"author": "skilly-hand",
|
|
13
|
+
"last-edit": "2026-05-23",
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
|
+
"version": "1.0.0",
|
|
16
|
+
"changelog": "Added context-handoff skill for project-local session continuity; preserves compact verified context across chats without transcript bloat; affects catalog skill routing and handoff-writing workflows",
|
|
17
|
+
"auto-invoke": "Summarizing, compacting, preserving, or handing off session context across chats",
|
|
18
|
+
"allowed-tools": [
|
|
19
|
+
"Read",
|
|
20
|
+
"Edit",
|
|
21
|
+
"Write",
|
|
22
|
+
"Glob",
|
|
23
|
+
"Grep",
|
|
24
|
+
"Bash",
|
|
25
|
+
"Task"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
{ "path": "SKILL.md", "kind": "instruction" },
|
|
30
|
+
{ "path": "assets/handoff-template.md", "kind": "asset" }
|
|
31
|
+
],
|
|
32
|
+
"dependencies": []
|
|
33
|
+
}
|
package/package.json
CHANGED