Issue Commands
Read and write issue content across GitHub, GitLab, and Jira from custom agent scripts using fullsend issues get and fullsend issues post-comment.
When to use
The built-in agent pipeline handles comment posting automatically for GitHub-sourced events. Use these commands when:
- A custom agent needs to post results back to Jira or GitLab.
- An agent script needs to read issue content (title, body, labels, comments) from any tracker as structured JSON.
- You need sticky comments (find-and-update-by-marker) on a non-GitHub tracker.
fullsend issues get
Reads an issue's title, body, labels, and comments from the specified tracker and prints them as JSON.
fullsend issues get \
--tracker github \
--project owner/repo \
--number 42For Jira, --project is the project key and --number is the numeric issue ID (not the human-readable key):
fullsend issues get \
--tracker jira \
--project PROJ \
--number 101 \
--jira-url https://myteam.atlassian.net \
--jira-email you@example.comFlags
| Flag | Required | Description |
|---|---|---|
--tracker | Yes (unless config default set) | Tracker backend: github, gitlab, or jira |
--project | Yes | Project identifier: owner/repo (GitHub/GitLab) or project key (Jira) |
--number | Yes | Issue number (must be a positive integer) |
--token | No | API token (default: env var per tracker) |
--jira-url | Jira only | Jira instance URL (default: $JIRA_BASE_URL) |
--jira-email | Jira only | Jira user email for auth (default: $JIRA_USER_EMAIL) |
--fullsend-dir | No | Path to .fullsend config directory (sources defaults from its config.yaml when flags are omitted) |
fullsend issues post-comment
Posts a comment with a sticky marker on an issue. On re-runs, finds the existing comment by its marker and edits in-place. By default, old content is collapsed into <details> blocks to preserve history; set keep_history: false in config.yaml (or pass --keep-history=false) to replace the body with no history. This prevents comment flooding on re-runs. For GitHub and GitLab, the marker is embedded as an invisible HTML comment in the body. For Jira, the marker is stored as a comment entity property (Jira has no HTML comments, so a body-embedded marker would be visible to users).
echo "Triage complete. See PR #99." | fullsend issues post-comment \
--tracker jira \
--project PROJ \
--number 101 \
--marker "<!-- fullsend:triage-agent -->" \
--jira-url https://myteam.atlassian.net \
--jira-email you@example.comFlags
| Flag | Required | Description |
|---|---|---|
--tracker | Yes (unless config default set) | Tracker backend: github, gitlab, or jira |
--project | Yes | Project identifier: owner/repo (GitHub/GitLab) or project key (Jira) |
--number | Yes | Issue number (must be a positive integer) |
--marker | Yes | Sticky marker for idempotent updates (e.g. <!-- fullsend:my-agent -->). GitHub/GitLab: hidden HTML comment in body. Jira: comment entity property. |
--result | No | Path to comment body file, or - for stdin (default: -) |
--token | No | API token (default: env var per tracker) |
--jira-url | Jira only | Jira instance URL (default: $JIRA_BASE_URL) |
--jira-email | Jira only | Jira user email for auth (default: $JIRA_USER_EMAIL) |
--dry-run | No | Print what would be posted without making API calls |
--keep-history | No | Append previous content as collapsed history blocks (default: true; set false to replace in-place) |
--fullsend-dir | No | Path to .fullsend config directory (sources defaults from its config.yaml when flags are omitted) |
Jira marker storage
For --tracker jira, the --marker value is stored as an invisible comment entity property rather than embedded in the visible comment body. Jira's ADF format has no HTML comment equivalent, so body-embedded markers would be visible to users. Because the marker lives in a property, character restrictions do not apply — any characters valid in the --marker flag are fine for Jira.
Config-based default tracker
Set a default tracker in .fullsend/config.yaml to avoid passing --tracker on every invocation:
tracker: jiraThen pass --fullsend-dir .fullsend (or let the agent pipeline supply it). An explicit --tracker flag overrides the config default. See Layered Config Reference for how the tracker field resolves through the config overlay chain.
Trust model
Marker-based comment lookup does not verify the comment author. In a trusted CI environment (the intended deployment) this is safe because only the bot writes marker-bearing comments.
For GitHub and GitLab, where markers are hidden HTML comments in the body, an untrusted user who can post issue comments containing your marker string could cause the bot to edit their comment instead of creating its own. For Jira, markers are stored as comment entity properties, which require comment-edit permissions to set — body-text injection alone cannot spoof a marker.
Do not use this command in environments where untrusted users can write arbitrary issue comments bearing your marker (GitHub/GitLab) or have comment-edit permissions (Jira).
Environment variables
| Variable | Tracker | Description |
|---|---|---|
GH_TOKEN or GITHUB_TOKEN | GitHub | GitHub API token |
GITLAB_TOKEN | GitLab | GitLab API token |
JIRA_TOKEN | Jira | Jira API token |
JIRA_BASE_URL | Jira | Jira instance URL |
JIRA_USER_EMAIL | Jira | Email for Jira Cloud Basic auth |
See also
- Jira Integration -- polling and dispatch setup
- Bring Your Own Agent -- adding custom agents
- Layered Config Reference -- config field documentation
