Local coding agent bridge
What this is
Skills here do not run on the combo agent platform. They install into local coding hosts (Cursor, Claude Code, Codex, …) and form the bridge between desktop AI workloads and cloud sessions.
Let IDE copilots read cloud session artifacts and graft cloud analysis into local edit/test loops.
Why it exists
Cloud Agents excel at consolidated analysis (ASPICE traces, requirement audits, baseline diffs), yet code edits, tests, and PRs still happen locally. Without wiring:
- Cloud conclusions stay read-only
- Local AI repeats analysis from scratch
- Humans copy/paste between chat surfaces
vs. cloud builtin skills
| Dimension | Cloud builtin | Local coding skill |
|---|---|---|
| Runtime | Platform Agent process | User IDE host |
| Install | Bundled with tenant Agents | Copy/symlink into ~/.cursor/skills, etc. |
| Transport | In-process FunctionTool | scripts/*.py over HTTPS |
| Auth | Session-scoped | ~/.config/<skill>/token.json |
| Audience | Business Agents on platform | Engineers inside IDEs |
Available skills
Roadmap: local CLI triggers, code push → cloud webhooks, etc. File requests via help/contact.
Install pattern
Each pack is a folder (SKILL.md + scripts/). Drop it into the host’s skills directory:
| Host | User scope | Repo scope | Official docs |
|---|---|---|---|
| Cursor | ~/.cursor/skills/ | .cursor/skills/ | cursor.com/docs/skills |
| Claude Code | ~/.claude/skills/ | .claude/skills/ | code.claude.com/docs/en/skills |
| Trae | ~/.trae/skills/ | .trae/skills/ | docs.trae.ai/ide/skills |
| Codex | ~/.codex/skills/ | .codex/skills/ | Follow repo SKILL.md conventions |
Cursor also scans
~/.claude/skills/,.claude/skills/,~/.codex/skills/,.codex/skills/—install once, reuse everywhere.
Step 1 — clone the public bundle Nox-Lumen-tech/combo-skills:
Step 2 — install graft-comboagent (example):
Restart hosts after first install so discovery picks up new roots. Claude Code watches existing sessions live, yet brand-new top-level directories still require a restart. Prefer symlinks +
cron/git pullin~/src/combo-skillsto stay current.
Python deps
Most packs need:
See each skill page for extras.
Related docs
- graft-comboagent
- Graft concept
- skills/agentic/graft — cloud builtin counterpart