docs: add DataWorkingLayer rule and fix UseForge skill-asset guidance#66
Open
N4M3Z wants to merge 2 commits into
Open
docs: add DataWorkingLayer rule and fix UseForge skill-asset guidance#66N4M3Z wants to merge 2 commits into
N4M3Z wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
UseForgestill says assembly only deploys.mdfiles and tells you to put skill helpers inbin/. ASSEMBLY-0012 in forge-cli changed that: a skill directory deploys its whole tree, only the top-levelSKILL.mdis assembled, everything else is copied verbatim. The rule now points the wrong way, and a helper parked inbin/to satisfy it misses the${CLAUDE_SKILL_DIR}pattern that works now.DataWorkingLayernever existed. MarkdownExtract (forge-text) and BuildDeck (forge-docs) both name the~/Documents,~/Data, vault convention, but no rule defined it, so the references dangled.Fix
Add
rules/DataWorkingLayer.md: originals stay in~/Documents, the extracted working layer lives in~/Data/<Type>/<project>/, and the vault references that layer instead of copying it.Rewrite the
UseForgeassembly paragraph for verbatim deploy. Non-UTF-8 binaries are skipped with a warning, the executable bit isn't preserved yet so a deployed helper runs through its interpreter, and compiled binaries still belong inbin/.Out of scope
My working copy also has a
--forceparagraph edit to UseForge from separate work. It's left out. This branch resets UseForge to main first, then changes only the assembly line.Test plan
forge installon a skill bundling a UTF-8uv runhelper. It deployed (as644, so the exec-bit caveat holds).jj diffshows only the two rule files.forge validate.