Skip to content

Tags: pwright/beans

Tags

v0.3.4

Toggle v0.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(tui): add 'y' shortcut to copy bean-id (hmans#26)

Adds a new keyboard shortcut y to copy the current bean ID to the clipboard when browsing beans in the TUI.

Changes

- List view: Press y to copy the bean ID under the cursor (ignores multi-select)
- Detail view: Press y to copy the current bean's ID
- Feedback: Shows "Copied beans-xyz to clipboard" in the footer status line
- Help text: Updated help overlay and footer help to include the new shortcut

Implementation

- Uses atotto/clipboard library for cross-platform clipboard support
- Follows existing Bubbletea message-passing patterns
- Status messages clear on next keypress

Details see .beans/beans-govy--add-y-shortcut-to-copy-bean-id-in-tui.md

v0.3.3

Toggle v0.3.3's commit message
docs: add OpenCode plugin and integration instructions

- Add beans-prime.ts plugin for OpenCode integration
- Document plugin location options (project-local vs user-global)
- Update README with OpenCode setup instructions

v0.3.2

Toggle v0.3.2's commit message
fix(tui): don't quit on Q when create modal is open

Remove viewCreateModal from the list of states where pressing Q
triggers quit, allowing users to type titles containing "q".

v0.3.1

Toggle v0.3.1's commit message
fix: remove column headers from TUI list view

- Remove buildColumnHeader() function and its usage
- Keep headers only in `beans list` CLI output

v0.3.0

Toggle v0.3.0's commit message
chore: beans!

v0.2.0

Toggle v0.2.0's commit message
chore: scrap the stats command

v0.1.32

Toggle v0.1.32's commit message
Cleanup

v0.1.31

Toggle v0.1.31's commit message
Update README

v0.1.30

Toggle v0.1.30's commit message
refactor: use text/template for prompt command

- Replace strings.Builder with text/template for cleaner output generation
- Move dynamic sections (GraphQL schema, types, statuses, priorities) into template
- Rename prompt.md to prompt.tmpl to reflect its template nature

v0.1.29

Toggle v0.1.29's commit message
fix!: return error from beans query on GraphQL errors

- executeQuery now returns an error when GraphQL errors occur
- On success, returns just the data portion instead of full response
- CLI now exits with status code 1 on GraphQL errors
- Updated tests to expect new behavior