by amplifthq
Mention any ACP coding agent from Slack, GitHub, GitLab, Linear, or Lark. OpenTag runs Claude Code, Codex, Cursor and more on your own machine, then replies in-thread with verified, evidence-backed results.
# Add to your Claude Code skills
git clone https://github.com/amplifthq/opentagLast scanned: 6/26/2026
{
"issues": [
{
"type": "npm-audit",
"message": "esbuild: esbuild allows arbitrary file read when running the development server on Windows",
"severity": "low"
}
],
"status": "PASSED",
"scannedAt": "2026-06-26T07:52:23.086Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}See how opentag compares with popular alternatives.
opentag is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by amplifthq. Mention any ACP coding agent from Slack, GitHub, GitLab, Linear, or Lark. OpenTag runs Claude Code, Codex, Cursor and more on your own machine, then replies in-thread with verified, evidence-backed results. It has 1,380 GitHub stars.
Yes. opentag passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/amplifthq/opentag" and add it to your Claude Code skills directory (see the Installation section above).
opentag is primarily written in TypeScript. It is open-source under amplifthq on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh opentag against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Your persistent AI teammate in Slack, running on a computer you control.
OpenTag gives an engineering channel a teammate that remains reachable through your self-hosted Control Plane, even when its paired computer is offline. Mention it in Slack to queue work; when the Runner is ready, it invokes your coding agent through ACP against the local checkout and reports status, decisions, and evidence back in the same thread.
Your source code, local checkout and worktrees, coding-agent login/session, and GitHub credential stay on the Runner. Slack credentials and the Control Plane's service credentials stay on the Control Plane. It keeps coordination truth—not a copy of your development machine.
Prerequisites: Docker Compose, PostgreSQL through the included Compose profile, and a public HTTPS origin that Slack can reach.
git clone https://github.com/amplifthq/opentag.git
cd opentag/deploy/compose
cp .env.example .env
docker compose --env-file .env up --build
Before the last command, replace every placeholder in .env and create the
file-backed Slack and relay-content secrets described in the
Compose guide.
npm install -g @opentag/cli@0.11.0
opentag setup --relay https://relay.example.com
opentag start
Setup configures and pairs one Runner, GitHub Project Target, and ACP executor.
The paired-only runtime requires the trusted self-hosted Control Plane URL and
bootstrap pairing credential; it has no standalone local mode.
When prompted, enter the exact OPENTAG_SLACK_PROJECT_TARGET_ID used by the
active Slack binding; setup registers it through the Runner credential and
verifies the Control Plane readback before pairing completes.
If this machine ran a pre-reset OpenTag checkout, point OPENTAG_CONFIG_HOME
and OPENTAG_STATE_DIR at new empty directories. The paired Runner does not
reinterpret or rewrite an earlier config or SQLite database.
Use opentag pair only to finish an interrupted pairing or pair an existing
unpaired configuration. Verify the exact installation before the first real
request:
opentag doctor
opentag status
@OpenTag investigate the failing check and propose a fix
If the Runner is offline, the request remains visibly queued. If work needs a
decision, Slack shows the exact action that needs attention. A provider timeout
or ambiguous side effect remains outcome_unknown; OpenTag does not invent a
success or blindly replay it.
flowchart LR
S[Slack channel] --> C[Self-hosted Control Plane]
C --> P[(PostgreSQL)]
C --> R[Paired Runner]
R --> A[ACP coding agent]
A --> W[Local checkout]
R --> G[GitHub draft PR and readback]
C --> S
Slack is the only Source App in the supported team profile. GitHub is a Project Target plus an optional publication and evidence provider; it is not a second request inbox. One paired Runner is the execution owner. The Control Plane owns the canonical Work, Attempt, lease, approval, Effect evidence, channel projection, and terminal assessment.
The console exposes each active Slack binding as a long-lived Teammate. Its work state is derived from facts that already exist: Project Target, fresh Runner readiness, and the binding's current Work. It adds no Teammate table, second lifecycle, or mutable presence state.
| State | What it means |
|---|---|
ready |
The Teammate's Project Target, Runner, and fresh readiness all exist. |
queued |
A request is durably waiting for the paired Runner. |
working |
The current fenced Attempt is assigned or running on a ready Runner. |
needs_attention |
A decision, reconciliation, or conflicting active work needs a human. |
runner_offline |
The Teammate remains in Slack, but its Runner has no fresh readiness receipt. |
setup_required |
The Slack binding, Project Target, or Runner is incomplete. |
These states are projections, not commands. They cannot claim, retry, cancel, or settle work.
The current product path is:
Slack presence → self-hosted Control Plane → one paired Runner
→ one ACP coding agent → optional GitHub draft PR/evidence → Slack
This repository does not currently claim managed hosting, high availability,
other Source Apps, GitHub webhook ingress, multi-Runner scheduling, ambient
memory, automatic merge, or a general software-factory planner. There is no
local_direct compatibility mode: the supported product always pairs a Runner
with the self-hosted Control Plane.
OpenTag's Runner launches configured coding agents through ACP and keeps raw tool output out of the team thread. The repository includes an agent-readable install guide and an OpenTag skill so Codex, Claude Code, and other coding agents can help with local setup without asking users to paste secrets into chat.
corepack pnpm install --frozen-lockfile
corepack pnpm typecheck
corepack pnpm test
corepack pnpm build
These checks prove local source behavior only. They do not prove a deployed relay, a live Slack delivery, a GitHub publication, or installation-level availability.
Contributions are welcome. See CONTRIBUTING.md for the local development workflow and pull-request checks.