📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-20 00:03:02 +00:00
parent 47ce7f78dc
commit 2c00adccd5
1216 changed files with 10376 additions and 90058 deletions
@@ -1,6 +1,6 @@
{
"name": "agentic-bundle-essentials",
"version": "14.6.0",
"version": "15.1.0",
"description": "Editorial \"Essentials\" bundle for Claude Code from Agentic Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -1,6 +1,6 @@
{
"name": "aasb-essentials",
"version": "14.6.0",
"version": "15.1.0",
"description": "Install the \"Essentials\" editorial skill bundle from Agentic Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -32,22 +32,22 @@ Do not use this skill for a maintainer merge batch, canonical synchronization, v
## Workflow
Use the helper only after the safety gates pass. With no paths it stages all current changes, so use that form only when every dirty file belongs to the requested commit:
Use the helper only after the safety gates pass. Resolve the installed directory that contains this `SKILL.md` and substitute its absolute path for `<skill-directory>` below; do not assume the current working directory is the catalog repository. With no paths the helper stages all current changes, so use that form only when every dirty file belongs to the requested commit:
```bash
bash skills/git-pushing/scripts/smart_commit.sh
bash "<skill-directory>/scripts/smart_commit.sh"
```
With custom message:
```bash
bash skills/git-pushing/scripts/smart_commit.sh "feat: add feature"
bash "<skill-directory>/scripts/smart_commit.sh" "feat: add feature"
```
To stage only named files, pass them after `--`:
```bash
bash skills/git-pushing/scripts/smart_commit.sh "fix: scope change" -- path/to/file
bash "<skill-directory>/scripts/smart_commit.sh" "fix: scope change" -- path/to/file
```
The helper handles isolated staging, commit creation, and push; it does not replace validation, release tooling, or a rebase required by an advanced upstream branch.