-
Notifications
You must be signed in to change notification settings - Fork 1k
fix(skills): use block sequences for YAML frontmatter #541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ---\n"@googleworkspace/cli": patch\n---\n\nfix(skills): use block sequences for YAML frontmatter to improve compatibility with validation tools |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -390,7 +390,8 @@ metadata: | |
| openclaw: | ||
| category: "productivity" | ||
| requires: | ||
| bins: ["gws"] | ||
| bins: | ||
| - "gws" | ||
| cliHelp: "gws {alias} --help" | ||
| --- | ||
|
|
||
|
|
@@ -526,7 +527,8 @@ metadata: | |
| openclaw: | ||
| category: "{category}" | ||
| requires: | ||
| bins: ["gws"] | ||
| bins: | ||
| - "gws" | ||
| cliHelp: "gws {alias} {cmd_name} --help" | ||
| --- | ||
|
|
||
|
|
@@ -673,7 +675,8 @@ metadata: | |
| openclaw: | ||
| category: "productivity" | ||
| requires: | ||
| bins: ["gws"] | ||
| bins: | ||
| - "gws" | ||
| --- | ||
|
|
||
| # gws — Shared Reference | ||
|
|
@@ -773,7 +776,8 @@ metadata: | |
| openclaw: | ||
| category: "persona" | ||
| requires: | ||
| bins: ["gws"] | ||
| bins: | ||
| - "gws" | ||
| skills: [{skills}] | ||
| --- | ||
|
|
||
|
|
@@ -844,7 +848,8 @@ metadata: | |
| category: "recipe" | ||
| domain: "{category}" | ||
| requires: | ||
| bins: ["gws"] | ||
| bins: | ||
| - "gws" | ||
|
Comment on lines
+851
to
+852
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the issue in To fix this, you'll need to adjust how
|
||
| skills: [{skills}] | ||
| --- | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While you've correctly converted
binsto a block sequence, theskillsfield on the following line (781) is still being generated as a flow sequence. This is inconsistent with the PR's goal of using block sequences for compatibility.To fix this, you'll need to adjust how
required_skillsis generated (lines 761-766) and update the format string.Update the
required_skillsgeneration:Update the
skillsline in the template string: