From da01610c0c8cf8f14c032a823e419ad9123812d3 Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 08:37:23 +0200 Subject: [PATCH 1/6] feat(skills): add entire-search skill from entireio/skills Package skills/search from https://github.com/entireio/skills (MIT) at commit 33d2f7ef206b08781fad6481611bae3d3a4ab8d4 (main as of 2026-05-05) at dockyard version 0.1.0. Allowlists MANIFEST_MISSING_LICENSE since entireio/skills carries its MIT license at the repo root rather than embedding an SPDX identifier in per-skill SKILL.md frontmatter. --- skills/entire-search/spec.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 skills/entire-search/spec.yaml diff --git a/skills/entire-search/spec.yaml b/skills/entire-search/spec.yaml new file mode 100644 index 00000000..8104afa9 --- /dev/null +++ b/skills/entire-search/spec.yaml @@ -0,0 +1,23 @@ +# Entire search Skill +# Find prior work, checkpoints, and agent conversations in Entire history before guessing from memory. +# Source: https://github.com/entireio/skills +# Will publish as: ghcr.io/stacklok/dockyard/skills/entire-search:0.1.0 + +metadata: + name: entire-search + description: "Find prior work, checkpoints, or agent conversations in Entire history by topic, repo, branch, author, or recent time window. Use before guessing from memory." + +spec: + repository: "https://github.com/entireio/skills" + ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + path: "skills/search" + version: "0.1.0" + +provenance: + repository_uri: "https://github.com/entireio/skills" + repository_ref: "refs/heads/main" + +security: + allowed_issues: + - rule_id: MANIFEST_MISSING_LICENSE + reason: "entireio/skills is MIT-licensed at the repo root; upstream does not embed an SPDX license identifier in per-skill SKILL.md frontmatter." From 7dc707cc3509c3c6edc36caf175a402c2dc77914 Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 08:37:23 +0200 Subject: [PATCH 2/6] feat(skills): add entire-explain skill from entireio/skills Package skills/explain from https://github.com/entireio/skills (MIT) at commit 33d2f7ef206b08781fad6481611bae3d3a4ab8d4 (main as of 2026-05-05) at dockyard version 0.1.0. Allowlists MANIFEST_MISSING_LICENSE since entireio/skills carries its MIT license at the repo root rather than embedding an SPDX identifier in per-skill SKILL.md frontmatter. --- skills/entire-explain/spec.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 skills/entire-explain/spec.yaml diff --git a/skills/entire-explain/spec.yaml b/skills/entire-explain/spec.yaml new file mode 100644 index 00000000..6e2b56a2 --- /dev/null +++ b/skills/entire-explain/spec.yaml @@ -0,0 +1,23 @@ +# Entire explain Skill +# Explain code intent by tracing it back to the original Entire session transcript. +# Source: https://github.com/entireio/skills +# Will publish as: ghcr.io/stacklok/dockyard/skills/entire-explain:0.1.0 + +metadata: + name: entire-explain + description: "Explain the intent behind a function, file, or line by tracing it back to the original Entire session transcript that produced it." + +spec: + repository: "https://github.com/entireio/skills" + ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + path: "skills/explain" + version: "0.1.0" + +provenance: + repository_uri: "https://github.com/entireio/skills" + repository_ref: "refs/heads/main" + +security: + allowed_issues: + - rule_id: MANIFEST_MISSING_LICENSE + reason: "entireio/skills is MIT-licensed at the repo root; upstream does not embed an SPDX license identifier in per-skill SKILL.md frontmatter." From fea0c33633c7d2e1e24901f34cfa270b8eaf875d Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 08:37:23 +0200 Subject: [PATCH 3/6] feat(skills): add entire-what-happened skill from entireio/skills Package skills/what-happened from https://github.com/entireio/skills (MIT) at commit 33d2f7ef206b08781fad6481611bae3d3a4ab8d4 (main as of 2026-05-05) at dockyard version 0.1.0. Allowlists MANIFEST_MISSING_LICENSE since entireio/skills carries its MIT license at the repo root rather than embedding an SPDX identifier in per-skill SKILL.md frontmatter. --- skills/entire-what-happened/spec.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 skills/entire-what-happened/spec.yaml diff --git a/skills/entire-what-happened/spec.yaml b/skills/entire-what-happened/spec.yaml new file mode 100644 index 00000000..aa742127 --- /dev/null +++ b/skills/entire-what-happened/spec.yaml @@ -0,0 +1,23 @@ +# Entire what-happened Skill +# Trace the latest change for a file range or pasted snippet via git blame plus Entire explain. +# Source: https://github.com/entireio/skills +# Will publish as: ghcr.io/stacklok/dockyard/skills/entire-what-happened:0.1.0 + +metadata: + name: entire-what-happened + description: "Trace the latest change for a file range, line, or pasted snippet via `git blame` plus deduplicated `entire explain` lookups. Use when the user asks what happened, why a block was changed, or wants provenance for a specific section." + +spec: + repository: "https://github.com/entireio/skills" + ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + path: "skills/what-happened" + version: "0.1.0" + +provenance: + repository_uri: "https://github.com/entireio/skills" + repository_ref: "refs/heads/main" + +security: + allowed_issues: + - rule_id: MANIFEST_MISSING_LICENSE + reason: "entireio/skills is MIT-licensed at the repo root; upstream does not embed an SPDX license identifier in per-skill SKILL.md frontmatter." From f0eae08255dff97ef8d3d37c074c36696c0805d6 Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 08:37:23 +0200 Subject: [PATCH 4/6] feat(skills): add entire-session-handoff skill from entireio/skills Package skills/session-handoff from https://github.com/entireio/skills (MIT) at commit 33d2f7ef206b08781fad6481611bae3d3a4ab8d4 (main as of 2026-05-05) at dockyard version 0.1.0. Allowlists MANIFEST_MISSING_LICENSE since entireio/skills carries its MIT license at the repo root rather than embedding an SPDX identifier in per-skill SKILL.md frontmatter. --- skills/entire-session-handoff/spec.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 skills/entire-session-handoff/spec.yaml diff --git a/skills/entire-session-handoff/spec.yaml b/skills/entire-session-handoff/spec.yaml new file mode 100644 index 00000000..7d375807 --- /dev/null +++ b/skills/entire-session-handoff/spec.yaml @@ -0,0 +1,23 @@ +# Entire session-handoff Skill +# Hand off the current or a saved Entire session to another agent with state, discoveries, and next steps. +# Source: https://github.com/entireio/skills +# Will publish as: ghcr.io/stacklok/dockyard/skills/entire-session-handoff:0.1.0 + +metadata: + name: entire-session-handoff + description: "Hand off the current or a saved Entire session to another agent. Inspects recent sessions and produces a handoff summary covering state, discoveries, blockers, and next steps." + +spec: + repository: "https://github.com/entireio/skills" + ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + path: "skills/session-handoff" + version: "0.1.0" + +provenance: + repository_uri: "https://github.com/entireio/skills" + repository_ref: "refs/heads/main" + +security: + allowed_issues: + - rule_id: MANIFEST_MISSING_LICENSE + reason: "entireio/skills is MIT-licensed at the repo root; upstream does not embed an SPDX license identifier in per-skill SKILL.md frontmatter." From 677d2ca70f774ee42a8e092fb62c27545cffc343 Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 08:37:23 +0200 Subject: [PATCH 5/6] feat(skills): add entire-session-to-skill skill from entireio/skills Package skills/session-to-skill from https://github.com/entireio/skills (MIT) at commit 33d2f7ef206b08781fad6481611bae3d3a4ab8d4 (main as of 2026-05-05) at dockyard version 0.1.0. The skill directory still exists at the pinned ref but its README section was removed in upstream PR #21. Allowlists MANIFEST_MISSING_LICENSE since entireio/skills carries its MIT license at the repo root rather than embedding an SPDX identifier in per-skill SKILL.md frontmatter. --- skills/entire-session-to-skill/spec.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 skills/entire-session-to-skill/spec.yaml diff --git a/skills/entire-session-to-skill/spec.yaml b/skills/entire-session-to-skill/spec.yaml new file mode 100644 index 00000000..8d014f2f --- /dev/null +++ b/skills/entire-session-to-skill/spec.yaml @@ -0,0 +1,23 @@ +# Entire session-to-skill Skill +# Turn Entire-tracked sessions, checkpoints, or repeated agent workflows into reusable SKILL.md drafts. +# Source: https://github.com/entireio/skills +# Will publish as: ghcr.io/stacklok/dockyard/skills/entire-session-to-skill:0.1.0 + +metadata: + name: entire-session-to-skill + description: "Turn one or more Entire-tracked sessions, checkpoints, or repeated agent workflows into a reusable SKILL.md draft." + +spec: + repository: "https://github.com/entireio/skills" + ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + path: "skills/session-to-skill" + version: "0.1.0" + +provenance: + repository_uri: "https://github.com/entireio/skills" + repository_ref: "refs/heads/main" + +security: + allowed_issues: + - rule_id: MANIFEST_MISSING_LICENSE + reason: "entireio/skills is MIT-licensed at the repo root; upstream does not embed an SPDX license identifier in per-skill SKILL.md frontmatter." From 7e27ddc988d61ed4cc6574d7a50c32e7bf5e33a9 Mon Sep 17 00:00:00 2001 From: Samuele Verzi Date: Thu, 7 May 2026 18:54:55 +0200 Subject: [PATCH 6/6] chore(deps): update entireio/skills digest to c376dc9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the pinned ref on all 5 entire-* skills to https://github.com/entireio/skills/commit/c376dc971045eb38c094802ca43875d1cfa00ea4 (main as of 2026-05-07), which includes entireio/skills#23 — fixes \`skills/what-happened/SKILL.md\` frontmatter \`name\` from "What Happened" to "what-happened" so it passes dockhand's slug validator. --- skills/entire-explain/spec.yaml | 2 +- skills/entire-search/spec.yaml | 2 +- skills/entire-session-handoff/spec.yaml | 2 +- skills/entire-session-to-skill/spec.yaml | 2 +- skills/entire-what-happened/spec.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/skills/entire-explain/spec.yaml b/skills/entire-explain/spec.yaml index 6e2b56a2..73ac41b9 100644 --- a/skills/entire-explain/spec.yaml +++ b/skills/entire-explain/spec.yaml @@ -9,7 +9,7 @@ metadata: spec: repository: "https://github.com/entireio/skills" - ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + ref: "c376dc971045eb38c094802ca43875d1cfa00ea4" # main as of 2026-05-07 path: "skills/explain" version: "0.1.0" diff --git a/skills/entire-search/spec.yaml b/skills/entire-search/spec.yaml index 8104afa9..84c8984c 100644 --- a/skills/entire-search/spec.yaml +++ b/skills/entire-search/spec.yaml @@ -9,7 +9,7 @@ metadata: spec: repository: "https://github.com/entireio/skills" - ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + ref: "c376dc971045eb38c094802ca43875d1cfa00ea4" # main as of 2026-05-07 path: "skills/search" version: "0.1.0" diff --git a/skills/entire-session-handoff/spec.yaml b/skills/entire-session-handoff/spec.yaml index 7d375807..adfb3a7e 100644 --- a/skills/entire-session-handoff/spec.yaml +++ b/skills/entire-session-handoff/spec.yaml @@ -9,7 +9,7 @@ metadata: spec: repository: "https://github.com/entireio/skills" - ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + ref: "c376dc971045eb38c094802ca43875d1cfa00ea4" # main as of 2026-05-07 path: "skills/session-handoff" version: "0.1.0" diff --git a/skills/entire-session-to-skill/spec.yaml b/skills/entire-session-to-skill/spec.yaml index 8d014f2f..8f91d7fa 100644 --- a/skills/entire-session-to-skill/spec.yaml +++ b/skills/entire-session-to-skill/spec.yaml @@ -9,7 +9,7 @@ metadata: spec: repository: "https://github.com/entireio/skills" - ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + ref: "c376dc971045eb38c094802ca43875d1cfa00ea4" # main as of 2026-05-07 path: "skills/session-to-skill" version: "0.1.0" diff --git a/skills/entire-what-happened/spec.yaml b/skills/entire-what-happened/spec.yaml index aa742127..3bbd9075 100644 --- a/skills/entire-what-happened/spec.yaml +++ b/skills/entire-what-happened/spec.yaml @@ -9,7 +9,7 @@ metadata: spec: repository: "https://github.com/entireio/skills" - ref: "33d2f7ef206b08781fad6481611bae3d3a4ab8d4" # main as of 2026-05-05 + ref: "c376dc971045eb38c094802ca43875d1cfa00ea4" # main as of 2026-05-07 path: "skills/what-happened" version: "0.1.0"