Skip to content

Commit 2bfcca9

Browse files
authored
feat: move version from top-level SKILL.md frontmatter to metadata and track CLI version (#601)
1 parent 203acc7 commit 2bfcca9

File tree

96 files changed

+135
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+135
-102
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@googleworkspace/cli": patch
3+
---
4+
5+
Move version from top-level SKILL.md frontmatter to metadata and track CLI version

scripts/version-sync.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# Syncs the version from package.json into Cargo.toml and updates Cargo.lock.
2+
# Syncs the version from package.json into Cargo.toml, updates Cargo.lock, and regenerates skills.
33
# Used by changesets/action as a custom version command.
44
set -euo pipefail
55

@@ -26,5 +26,8 @@ if command -v nix > /dev/null 2>&1; then
2626
nix flake lock --update-input nixpkgs
2727
fi
2828

29+
# Regenerate skills so metadata.version tracks the CLI version
30+
cargo run -- generate-skills --output-dir skills
31+
2932
# Stage the changed files so changesets/action commits them
30-
git add Cargo.toml Cargo.lock flake.nix flake.lock
33+
git add Cargo.toml Cargo.lock flake.nix flake.lock skills/

skills/gws-admin-reports/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-admin-reports
3-
version: 1.0.0
43
description: "Google Workspace Admin SDK: Audit logs and usage reports."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-calendar-agenda/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-calendar-agenda
3-
version: 1.0.0
43
description: "Google Calendar: Show upcoming events across all calendars."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-calendar-insert/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-calendar-insert
3-
version: 1.0.0
43
description: "Google Calendar: Create a new event."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-calendar/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-calendar
3-
version: 1.0.0
43
description: "Google Calendar: Manage calendars and events."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-chat-send/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-chat-send
3-
version: 1.0.0
43
description: "Google Chat: Send a message to a space."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-chat/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-chat
3-
version: 1.0.0
43
description: "Google Chat: Manage Chat spaces and messages."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-classroom/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-classroom
3-
version: 1.0.0
43
description: "Google Classroom: Manage classes, rosters, and coursework."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

skills/gws-docs-write/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: gws-docs-write
3-
version: 1.0.0
43
description: "Google Docs: Append text to a document."
54
metadata:
5+
version: 0.19.0
66
openclaw:
77
category: "productivity"
88
requires:

0 commit comments

Comments
 (0)