agentsclimarketplace

Intelligence install adapter

Skill ainova-systems/intelligence-sync/intelligence/sync/skills/intelligence-install-adapter

Enable IDE adapter for intelligence-syncFrom its SKILL.md

Install
npx -y skills add ainova-systems/intelligence-sync --skill intelligence-install-adapter

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `web search for its rules / agents / skills file layout` and 1 more.

SKILL.md

2.0 KB, 462 tokens by cl100k_base, as published. Nobody here has run it

Install Adapter

The umbrella is whatever directory holds config.yaml (intelligence/, Intelligence/, a codename — never assume the name or casing); the engine module is the directory under it holding scripts/sync.sh (conventionally sync/).

Steps

  1. Check whether target $ARGUMENTS is already enabled in config.yaml — if yes, report and stop.

  2. Locate the adapter. sync.sh discovers adapters in two places:

    • Built-in: <module>/scripts/adapters/$ARGUMENTS.sh — upstream-owned. update.sh replaces that whole directory on every engine update.
    • Project-owned: <umbrella>/adapters/$ARGUMENTS.shupdate.sh never touches it. A project adapter of the same name overrides the built-in.

    If neither exists, research the tool's prompt format (web search for its rules / agents / skills file layout), then copy <module>/scripts/adapters/_template.sh to <umbrella>/adapters/$ARGUMENTS.sh and implement sync_to_$ARGUMENTS(). Author it there, never inside the engine's scripts/adapters/ — a file written there is deleted by the next engine update. Adapter contract: <module>/docs/ADAPTERS.md. An adapter that would serve every project is worth contributing upstream.

  3. Update config.yaml:

    • Target exists with enabled: false → flip to enabled: true.
    • Target missing → add it under targets: with its output: path.
    • If the target reads always-on rules from AGENTS.md (cursor, copilot, codex, pi, opencode), targets.agents must be enabled too — sync fails closed otherwise.
  4. Add the adapter's generated paths to .gitignore (the paths it writes, not the whole output root — a shared root like .github/ or .claude/ also holds tracked, hand-authored files).

  5. Run /intelligence-sync to generate the output.

  6. Report: adapter enabled, files generated, output location.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.