Skip to main content

Project Board Pack

TrustedSandbox optionalv1.0.0MITPartially Verified45Connector

by AgentNode · published 5 months ago · toolpack

Manage Trello-style kanban boards, lists, and cards.

Create boards, manage lists and cards, assign members, set due dates, and track project progress using the Trello API.

langchaincrewaigeneric

Quick Start

bash
agentnode install project-board-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
from project_board_pack.tool import run

# Create a new sprint board with lists and initial cards
result = run(
    action="create_board",
    name="Sprint 15 — March 2026",
    lists=["Backlog", "In Progress", "Review", "Done"],
    cards=[
        {"list": "Backlog", "name": "Implement OAuth2 PKCE flow", "labels": ["backend"], "due": "2026-03-25"},
        {"list": "Backlog", "name": "Design settings page wireframes", "labels": ["design"], "due": "2026-03-22"},
        {"list": "Backlog", "name": "Write API rate limiting tests", "labels": ["testing"], "due": "2026-03-24"},
        {"list": "In Progress", "name": "Migrate user table to new schema", "labels": ["backend"], "members": ["alex"]}
    ]
)

print(f"Board created: {result['board_url']}")
print(f"Lists: {result['list_count']}")
print(f"Cards: {result['card_count']}")

Environment Variables

TRELLO_API_KEY

Trello API key — obtain from trello.com/app-key

required
TRELLO_TOKEN

Trello authorization token granting access to your boards and workspace

required

Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works

Verification

low confidence45/100○ Partially Verified
smokeCredential boundary reached (high confidence)
+15/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.6s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs and imports correctly. requires API credentials for full verification.

install1.6s
import67ms
smoke505ms
tests1.3s

This package requires API credentials for full verification. Install and import checks passed.

Verified in real_auto mode

Python 3.12.3ffmpegpopplertesseractuv

Last verified 3d ago· Runner v2.0.0

Use this when you need to...

  • Create Trello boards with predefined lists for new project sprints
  • Move cards across lists to reflect task status changes automatically
  • Add checklists and due dates to Trello cards from external triggers
  • Archive completed cards and generate sprint velocity reports
  • Sync task assignments between Trello boards and team rosters

README

Version History

Capabilities

project_boardboard_managetool

Connector

trelloconnectorapi_key

Permissions

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networkunrestricted
Filesystemnone
Code Executionnone
Data Accessconnected_accounts
User Approvalonce

Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more

Privacy

All tool execution happens locally on your machine. AgentNode never receives:

  • • Tool inputs or outputs
  • • Execution logs
  • • Data your agent processes

Only install events and search queries are sent to the registry.

bash
agentnode install project-board-pack

Environment Variables

TRELLO_API_KEYrequired
TRELLO_TOKENrequired

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointproject_board_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode