From ec06127443e34160653eb9061d90ad3efb1a6eaa Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Wed, 18 Mar 2026 17:05:40 +0100 Subject: [PATCH] Enhance CI/CD workflow by specifying paths for push and pull request triggers; update documentation with installation instructions and feature update reminders. --- .github/workflows/publish.yml | 6 ++++++ OpenclawSkill.md | 13 ++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 19569b3..76024cc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,9 +4,15 @@ on: push: branches: - '**' + paths: + - '**/*.ts' + - '**/*.json' pull_request: branches: - main + paths: + - '**/*.ts' + - '**/*.json' jobs: build: diff --git a/OpenclawSkill.md b/OpenclawSkill.md index fa46967..32ed924 100644 --- a/OpenclawSkill.md +++ b/OpenclawSkill.md @@ -45,4 +45,15 @@ this will check the health, and if not setup, it will prompt you to set up the C - `shsf file list`: List files in a storage. (use `shsf file list -h` first) ## Instructions -Use these commands for when you need to interact with shsf from the command line. Its faster than using the ui for almost all ops. \ No newline at end of file +Use these commands for when you need to interact with shsf from the command line. Its faster than using the ui for almost all ops. + +## Update +Update with your package manager of choice. Preferably pnpm: +```bash +pnpm add -g shsf-cli +``` +Note that new features are often released and a user might tell you to do things that are only in the latest version. So its a good idea to always keep it updated. + +## Missing a feature? +Features might be not documented yet, as this skill document rarely updates. +Use the shsf -h command to see options and features. \ No newline at end of file