Getting issue details with tea CLI was unreliable:
tea issue view 3 showed a table of all issues instead of issue #3 details
tea issue view 3 --comments same problem
Had to use tea issue --repo flowmade-one/platform 3 to finally get the body
This caused multiple failed attempts and wasted time.
Suggested Improvement
Document the correct tea CLI syntax for viewing a single issue, or consider using a different approach (direct API call).
Working command: tea issue --repo <owner>/<repo> <number>
Not working as expected: tea issue view <number>
Affected Files
skills/work-issue/SKILL.md
Any skill that needs to fetch issue details
## Context
Working on issue #3 via work-issue skill.
## Problem / Observation
Getting issue details with tea CLI was unreliable:
- `tea issue view 3` showed a table of all issues instead of issue #3 details
- `tea issue view 3 --comments` same problem
- Had to use `tea issue --repo flowmade-one/platform 3` to finally get the body
This caused multiple failed attempts and wasted time.
## Suggested Improvement
Document the correct tea CLI syntax for viewing a single issue, or consider using a different approach (direct API call).
Working command: `tea issue --repo <owner>/<repo> <number>`
Not working as expected: `tea issue view <number>`
## Affected Files
- skills/work-issue/SKILL.md
- Any skill that needs to fetch issue details
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Context
Working on issue #3 via work-issue skill.
Problem / Observation
Getting issue details with tea CLI was unreliable:
tea issue view 3showed a table of all issues instead of issue #3 detailstea issue view 3 --commentssame problemtea issue --repo flowmade-one/platform 3to finally get the bodyThis caused multiple failed attempts and wasted time.
Suggested Improvement
Document the correct tea CLI syntax for viewing a single issue, or consider using a different approach (direct API call).
Working command:
tea issue --repo <owner>/<repo> <number>Not working as expected:
tea issue view <number>Affected Files