Lisa Tracker Create

Vendor-neutral wrapper for creating tickets/issues from code files or descriptions. Reads the required `tracker` from .lisa.config.json and dispatches to lisa-jira-create, lisa-github-create, or lisa-linear-create. Plans hierarchy structure (epic / story / sub-task), then delegates each individual write through the tracker-write shim.

codyswanngt Updated

File contents

Tracker Create: $ARGUMENTS

Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor planning skill.

See the config-resolution rule for configuration and dispatch table.

Workflow

  1. Resolve tracker config (same logic as lisa-tracker-write).
  2. Dispatch:
    • Missing / empty → stop and report "No tracker configured in .lisa.config.json. Run /lisa:setup:jira, /lisa:setup:github, or /lisa:setup:linear first."
    • jira → invoke lisa-jira-create with $ARGUMENTS verbatim.
    • github → invoke lisa-github-create with $ARGUMENTS verbatim.
    • linear → invoke lisa-linear-create with $ARGUMENTS verbatim.
    • Anything else → stop and report "Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."
  3. Pass through the output.

Rules

  • All vendor skills delegate every individual ticket write through lisa-tracker-write. They never call vendor-specific write tools directly.
  • This shim is for ad-hoc creation from code files / descriptions. PRD-driven creation goes through the *-to-tracker skills (notion / confluence / linear / github).

codyswanngt/advisory-rankings/tree/main/.opencode/skills/lisa/lisa-tracker-create commit 58b1c2b4a3

Frequently asked questions

npx skillmds@latest add codyswanngt/lisa-tracker-create-2