Skip to content

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.

bash
fullsend issues get \
  --tracker github \
  --project owner/repo \
  --number 42

For Jira, --project is the project key and --number is the numeric issue ID (not the human-readable key):

bash
fullsend issues get \
  --tracker jira \
  --project PROJ \
  --number 101 \
  --jira-url https://myteam.atlassian.net \
  --jira-email you@example.com

Flags

FlagRequiredDescription
--trackerYes (unless config default set)Tracker backend: github, gitlab, or jira
--projectYesProject identifier: owner/repo (GitHub/GitLab) or project key (Jira)
--numberYesIssue number (must be a positive integer)
--tokenNoAPI token (default: env var per tracker)
--jira-urlJira onlyJira instance URL (default: $JIRA_BASE_URL)
--jira-emailJira onlyJira user email for auth (default: $JIRA_USER_EMAIL)
--fullsend-dirNoPath 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).

bash
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.com

Flags

FlagRequiredDescription
--trackerYes (unless config default set)Tracker backend: github, gitlab, or jira
--projectYesProject identifier: owner/repo (GitHub/GitLab) or project key (Jira)
--numberYesIssue number (must be a positive integer)
--markerYesSticky marker for idempotent updates (e.g. <!-- fullsend:my-agent -->). GitHub/GitLab: hidden HTML comment in body. Jira: comment entity property.
--resultNoPath to comment body file, or - for stdin (default: -)
--tokenNoAPI token (default: env var per tracker)
--jira-urlJira onlyJira instance URL (default: $JIRA_BASE_URL)
--jira-emailJira onlyJira user email for auth (default: $JIRA_USER_EMAIL)
--dry-runNoPrint what would be posted without making API calls
--keep-historyNoAppend previous content as collapsed history blocks (default: true; set false to replace in-place)
--fullsend-dirNoPath 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:

yaml
tracker: jira

Then 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

VariableTrackerDescription
GH_TOKEN or GITHUB_TOKENGitHubGitHub API token
GITLAB_TOKENGitLabGitLab API token
JIRA_TOKENJiraJira API token
JIRA_BASE_URLJiraJira instance URL
JIRA_USER_EMAILJiraEmail for Jira Cloud Basic auth

See also