# Create an issuewit issue create "Bug: Login button not working"# List open issueswit issue list# View issue detailswit issue view 42# Close an issuewit issue close 42
# Create with title as argumentwit issue create "Bug: Login button not working"# Create with title flagwit issue create -t "Feature request: Dark mode"# With descriptionwit issue create -t "Add dark mode" -m "Users have requested a dark theme option"# With labelswit issue create -t "Bug: Crash on startup" -l "bug,critical"
Open issues:● #15 Bug: Login button not working by alice on 1/15/2024 Labels: bug, high-priority● #12 Feature: Add dark mode by bob on 1/10/2024 Labels: enhancement● #8 Documentation needs update by charlie on 1/5/2024
[OPEN] Bug: Login button not working #15────────────────────────────────────────────────────────Author: aliceCreated: 1/15/2024Labels: bug, high-priorityThe login button on the homepage doesn't respond to clicks.Steps to reproduce:1. Go to the homepage2. Click the "Login" button3. Nothing happensExpected: Should open login modalView online: http://localhost:3000/myuser/myproject/issues/15
# Add a comment to an issuewit issue comment 15 "I can reproduce this on Chrome 120"# Longer commentswit issue comment 15 "Fixed in commit abc123. The click handler was missing."
# 1. Create an issue for a bugwit issue create -t "Bug: API returns 500 error" -m "When calling /api/users, getting 500 error" -l "bug"# Output: ✓ Created issue #20# 2. Create a branch to fix itwit switch -c fix-api-error# 3. Make the fix# ... edit files ...wit add .wit commit -m "Fix API error handling"# 4. Add a comment with the fixwit issue comment 20 "Fixed in branch fix-api-error"# 5. Create a PRwit pr create -t "Fix API error handling"# 6. After PR is merged, close the issuewit issue close 20