Commit Graph
7 Commits
Author SHA1 Message Date
crisleo94 9496ef45ea Merge pull request 'Implement: US: Manage Trello Boards' (#6) from feature/manage-boards into main
Reviewed-on: #6
Reviewed-by: crisleo94 <cristhian.reinoso@codescripters.org>
2026-05-26 22:59:10 +00:00
crisleo94 5705b067c8 Merge branch 'main' into feature/manage-boards 2026-05-26 22:59:03 +00:00
crisleo94 44c53f8015 Merge pull request 'Implement: US: Authenticate and Connect to Trello Account' (#5) from feature/trello-auth into main
Reviewed-on: #5
Reviewed-by: crisleo94 <cristhian.reinoso@codescripters.org>
2026-05-26 22:46:26 +00:00
Marko (Hermes Implementer) f4bff86b70 feat: implement Trello board management
Add 5 board management tools extending the Trello client:
- trello_create_board — create a new board
- trello_rename_board — rename an existing board
- trello_archive_board — close/archive a board
- trello_open_board — re-open a closed board
- trello_board_details — view board with lists and members

Includes board name-to-ID resolution, 16 new tests, and spec doc.

Issue: #2
2026-05-26 22:28:49 +00:00
Marko (Hermes Implementer) 43acd5bfbf fix: address PR #5 review comments
- Add class-level type annotations on TrelloClient (api_key, token, _session)
- Add TypedDict response contracts with TypeGuard narrowing for _request
- Replace os.environ manipulation with monkeypatch in tests
- Align disconnect message with auto-reconnect behavior
- Add docstring for TRELLO_API_BASE constant
- Add _post and _put request helpers for future endpoints
2026-05-26 22:22:25 +00:00
Marko (Hermes Implementer) 6dac5d225e feat: implement Trello authentication & connection plugin
Add TrelloClient for Trello REST API interaction with env-var-based
credential management (TRELLO_API_KEY, TRELLO_TOKEN).

Implements:
- trello_verify_credentials — verify API key/token against Trello API
- trello_list_boards — list accessible Trello boards
- trello_disconnect — clear in-memory credentials

Includes full test suite (18 tests), spec document, and plugin metadata.

Issue: #1
2026-05-26 21:33:29 +00:00
max 5a90c37ed6 Initial commit 2026-05-26 04:12:41 +00:00