Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Manage AI coding sessions from Matrix with YouTrack and GitLab Who is this for Development teams using Claude Code who want a chat ops interface for project management. Instead of SSH ing into a se...
n8n-nodes-base.stickynote, n8n-nodes-base.set, n8n-nodes-base.scheduletrigger, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.switch, n8n-nodes-base.ssh
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Kyriakos Papadopoulos.
Original n8n.io sourceDevelopment teams using Claude Code who want a chat-ops interface for project management. Instead of SSH-ing into a server to run Claude, your whole team interacts with it through a Matrix chat room — with issue tracking and CI/CD pipeline visibility built in.
The workflow polls a Matrix room for new messages. A command router
parses !commands and dispatches them to the right handler:
> This is a self-hosted template. It requires your own infrastructure — > it will not run on n8n Cloud without a server accessible via SSH.
YOUTRACK_TOKEN and GITLAB_TOKEN as environment variables
on your server (not in the workflow)Authorization: Bearer <token>)CREATE TABLE sessions (
issue_id TEXT PRIMARY KEY, issue_title TEXT,
session_id TEXT, started_at TEXT, last_active TEXT,
message_count INTEGER DEFAULT 0, paused INTEGER DEFAULT 0,
is_current INTEGER DEFAULT 0
);
CREATE TABLE queue (
id INTEGER PRIMARY KEY AUTOINCREMENT,
issue_id TEXT, message TEXT, queued_at TEXT
);
CREATE TABLE session_log (
id INTEGER PRIMARY KEY AUTOINCREMENT,
issue_id TEXT, issue_title TEXT, session_id TEXT,
started_at TEXT, ended_at TEXT,
message_count INTEGER, outcome TEXT
);
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 38 workflow blocks. Download the JSON for the full node graph.
| Workflow | Manage Claude Code sessions from Matrix with YouTrack and GitLab |
|---|---|
| Complexity | advanced |
| Nodes | 38 |
| Categories | DevOps, AI Chatbot |
| Author | Kyriakos Papadopoulos |
| Published | 08 Mar 2026 |
Use the JSON export at /data/workflows/13943/13943.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Manage AI coding sessions from Matrix with YouTrack and GitLab Who is this for Development teams using Claude Code who want a chat ops interface for project management. Instead of SSH ing into a se...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your DevOps, AI Chatbot use case.