Steve Yegge
|
c69d4b4adb
|
Fix variable shadowing in author detection
|
2025-10-27 22:30:36 -07:00 |
|
Lon Lundgren
|
9dcfa88711
|
Properly pipe BD_ACTOR through to Comment.Author field in bd comments add. Add flag to bd comments add to accept author. Precedence is now glag, BD_ACTOR, USER
|
2025-10-27 22:30:36 -07:00 |
|
Steve Yegge
|
648ecfafe7
|
Address gosec security warnings (bd-102)
- Enable gosec linter in .golangci.yml
- Tighten file permissions: 0755→0750 for directories, 0644→0600 for configs
- Git hooks remain 0700 (executable, user-only access)
- Add #nosec comments for safe cases with justifications:
- G204: Safe subprocess launches (git show, bd daemon)
- G304: File inclusions with controlled paths
- G201: SQL formatting with controlled column names
- G115: Integer conversions with controlled values
All gosec warnings resolved (20→0). All tests passing.
Amp-Thread-ID: https://ampcode.com/threads/T-d7166b9e-cbbe-4c7b-9e48-3df36b20f0d0
Co-authored-by: Amp <amp@ampcode.com>
|
2025-10-26 22:48:19 -07:00 |
|
Steve Yegge
|
a86f3e139e
|
Add native Windows support (#91)
- Native Windows daemon using TCP loopback endpoints
- Direct-mode fallback for CLI/daemon compatibility
- Comment operations over RPC
- PowerShell installer script
- Go 1.24 requirement
- Cross-OS testing documented
Co-authored-by: danshapiro <danshapiro@users.noreply.github.com>
Amp-Thread-ID: https://ampcode.com/threads/T-c6230265-055f-4af1-9712-4481061886db
Co-authored-by: Amp <amp@ampcode.com>
|
2025-10-20 21:08:49 -07:00 |
|
Steve Yegge
|
a28d4fe4c7
|
Add comments feature (bd-162)
- Add comments table to SQLite schema
- Add Comment type to internal/types
- Implement AddIssueComment and GetIssueComments in storage layer
- Update JSONL export/import to include comments
- Add comments to 'bd show' output
- Create 'bd comments' CLI command structure
- Fix UpdateIssueID to update comments table and defer FK checks
- Add GetIssueComments/AddIssueComment to Storage interface
Note: CLI command needs daemon RPC support (tracked in bd-163)
Amp-Thread-ID: https://ampcode.com/threads/T-ece10dd1-cf64-48ff-9adb-dd304d0bcb25
Co-authored-by: Amp <amp@ampcode.com>
|
2025-10-19 18:28:41 -07:00 |
|