Agent API

Agent Integration

Use this page when you want to install the Quontext skill in a coding agent without tying the setup flow to one specific runtime.

Choose the integration path

Quontext distributes portable skill files. The install behavior that follows after download is owned by your coding agent, not by Quontext.

Notice

The supported distribution paths are `Skills CLI` and manual download and extract from `femtowork/quontext-plugnin`. If you are wiring another agent runtime directly, use the API Reference and carry the same `QUONTEXT_BASE_URL` and `QUONTEXT_PAT` values.

Install with Skills CLI

This is the shortest path when you want one install command that is not specific to a single coding agent.

  1. 1

    Issue a personal access token from Settings with `read:clips` and `search:clips`.

  2. 2

    Run `npx skills add femtowork/quontext-plugnin`.

  3. 3

    Restart or reload your coding agent if it caches installed skills.

  4. 4

    Set `QUONTEXT_BASE_URL` and `QUONTEXT_PAT` before you invoke the skill.

npx skills add femtowork/quontext-plugnin

Install by download and extract

If you do not want to use a dedicated installer, download the distribution repository and place the extracted skill files where your coding agent expects them.

  1. 1

    Download or clone `femtowork/quontext-plugnin` from GitHub.

  2. 2

    Extract the Quontext skill directory from the repository.

  3. 3

    Place that directory where your coding agent expects imported skills, then reload the agent.

  4. 4

    Set `QUONTEXT_BASE_URL` and `QUONTEXT_PAT` before you use the installed skill.

git clone https://github.com/femtowork/quontext-plugnin.git
cd quontext-plugnin

After install

The post-install behavior depends on your coding agent, but the shared Quontext configuration is the same everywhere.

  1. 1

    Set shared environment variables

    Configure `QUONTEXT_BASE_URL` and `QUONTEXT_PAT` in the environment or secret storage your agent runtime already uses.

  2. 2

    Reload the agent if needed

    Some agents pick up new skill files immediately, while others require a restart or a manual refresh.

  3. 3

    Use the API Reference when you need call details

    The install guide intentionally stays focused on distribution and setup. Endpoint details live in the API Reference.

Related pages

Use these shortcuts when you need the broader Agent API context.