AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skillctx Sync

skill-jackchuka-skillctx-skillctx-sync · by jackchuka

>

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-jackchuka-skillctx-skillctx-sync

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jackchuka-skillctx-skillctx-sync)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Skillctx Sync? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

skillctx-sync

Update embedded skillctx-resolve.py scripts across all migrated skills.

When to Use

  • After updating the skillctx repo (bug fix in resolve.py, new features)
  • User says "skillctx-sync", "update skillctx", or "sync skillctx"

Prerequisites

  • Python 3.10+
  • Skills must be installed and discoverable by the agent host

Workflow

  1. Read current version: Run python /scripts/sync.py with --help to verify the script is available. Read pyproject.toml in the skillctx repo root for the current version string.
  1. Scan for migrated skills: Run python /scripts/sync.py scan where `` is the directory containing installed skills. The script outputs JSON:

``json [ { "skill": "my-skill", "path": "/path/to/my-skill", "version": "0.1.0", "status": "outdated" }, { "skill": "other-skill", "path": "/path/to/other-skill", "version": "0.2.0", "status": "current" } ] ``

Only skills with `` in their SKILL.md are included.

  1. Present outdated skills to user: Filter the scan results to "status": "outdated" and show:

``` Skills with outdated skillctx resolver:

  • my-skill (v0.1.0 → v0.2.0)
  • another-skill (v0.1.0 → v0.2.0)

Update all? (yes/select/cancel) ```

Wait for user confirmation.

  1. Update each selected skill: For each skill the user approves, run:

`` python /scripts/sync.py update ``

Where ` is skills/skillctx-ify/scripts/resolve.py` (the canonical resolver in this repo). The script:

  • Copies the resolver to /scripts/skillctx-resolve.py
  • Replaces the ` ... ` block with the latest setup template
  • Updates metadata.skillctx.version in the skill's frontmatter
  1. Report what was updated and any errors.

Error Handling

| Error | Action | |-------|--------| | No migrated skills found | Report "no skills using skillctx found" | | All skills already current | Report "all skills up to date" | | Skill directory not writable | Warn and skip, list at the end | | Missing `` marker | Warn — setup block may be malformed. Skip and list for manual review. |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.