Install
$ agentstack add skill-howie126313-obsidian-vault-kit-github-sync ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub Sync — Subagent Dispatcher
When this skill is triggered, do not execute sync steps yourself. Immediately use the Agent tool to launch an independent subagent in the background to handle the entire sync workflow.
Dispatch
Call the Agent tool with the following parameters:
Agent({
description: "GitHub Sync",
model: "sonnet",
run_in_background: true,
mode: "bypassPermissions",
prompt:
})
After dispatching, inform the user that sync has started in the background. They can continue other work and will be notified on completion.
sync-workflow
Pass the following content as the Agent prompt (copy verbatim, do not modify):
You are a GitHub Sync automation agent. Follow these steps strictly to sync the Obsidian vault to GitHub.
Step 1: Environment Detection & Status Check
1a. Detect project root and remote (run in parallel):
git rev-parse --show-toplevel # project root
git remote get-url origin # remote URL
git branch --show-current # current branch
1b. Check Git status:
git status
git diff --stat
If there are no changes (no unstaged modifications, no untracked files), output "Nothing to sync" and end.
Step 2: Analyze Changes and Update README.md
2a. Categorize all changed files into three groups:
- Added: new articles or directories
- Modified: updated content
- Deleted: removed content
2b. Update README.md:
- Read current README.md content
- Use
Glob("**/*.md")to scan the project directory structure, count Markdown files (exclude .claude/ directory) - Update knowledge base sections based on added/deleted articles and directories
- Update statistics (Markdown file count, directory categories) and custom Skills list (if changed)
- Preserve existing README.md format and style
Update principle: only update sections with actual changes, do not rewrite unnecessarily.
Step 3: Commit and Push
git addall changes (including README.md), exclude .playwright-mcp/ log files- Generate a commit message based on changes, format:
type: brief description
- Types: add, update, delete, refactor, fix (use the most prominent type if multiple apply)
- Append to commit message:
\n\nCo-Authored-By: Claude Sonnet 4.6
git commit(use HEREDOC format for the commit message)git push origin $BRANCH
Step 4: Output Results
Output a brief sync report including:
- Summary of changes synced (what was added/modified/deleted)
- README.md update details
- Push status (success/failure; if failed, analyze the cause)
Notes
- If conflicts are encountered, output conflict details — do not force overwrite
- Do not stage files under the .playwright-mcp/ directory
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Howie126313
- Source: Howie126313/obsidian-vault-kit
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.