Skip to main content

Task Manager Pack

TrustedSandbox optionalv1.0.0MITPartially Verified42Connector

by AgentNode · published 5 months ago · toolpack

Create, assign, and track tasks across project management tools.

Unified task management interface for Asana, Linear, and Jira. Create tasks, set priorities, assign team members, and update status.

langchaincrewaigeneric

Quick Start

bash
agentnode install task-manager-pack

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

Usage

From package
python
from task_manager_pack.tool import run

result = run(
    action="create",
    platform="linear",
    task={
        "title": "Fix authentication timeout on mobile clients",
        "description": "Users on iOS 17+ are experiencing token refresh failures after 30 minutes of inactivity. The refresh_token endpoint returns 401 instead of issuing a new pair.",
        "assignee": "sarah@acme.dev",
        "priority": "urgent",
        "labels": ["bug", "mobile", "auth"],
        "project": "Backend API",
        "estimate": 3  # story points
    }
)

print(f"Task created: {result['task_id']}")
print(f"URL: {result['url']}")
print(f"Status: {result['status']}")

Environment Variables

LINEAR_API_KEY

Linear API key for task management (required for Linear integration)

ASANA_TOKEN

Asana personal access token (required for Asana integration)

JIRA_API_TOKEN

Jira API token for authentication (required for Jira integration)

JIRA_URL

Jira instance URL, e.g. https://yourcompany.atlassian.net (required for Jira integration)

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

Verification

low confidence42/100○ Partially Verified
smokeCredential boundary reached (medium confidence)
+12/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.5s
+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.5s
import54ms
smoke95ms
tests1.1s

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 sprint backlog items in Linear from Slack messages
  • Sync task status between Jira and Asana for cross-team projects
  • Assign and prioritize bug reports across project management tools
  • Generate weekly task completion summaries from Linear or Jira
  • Bulk-create onboarding tasks for new team members in Asana

README

Version History

Capabilities

task_managementtask_managetool

Input Schema

{
  "type": "object",
  "required": [
    "operation",
    "provider"
  ],
  "properties": {
    "api_key": {
      "type": "string",
      "default": ""
    },
    "provider": {
      "enum": [
        "linear"
      ],
      "type": "string",
      "default": "linear"
    },
    "operation": {
      "enum": [
        "list_issues",
        "get_issue",
        "create_issue",
        "search_issues"
      ],
      "type": "string"
    }
  }
}

Connector

linearconnectorapi_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 task-manager-pack

Environment Variables

LINEAR_API_KEY
ASANA_TOKEN
JIRA_API_TOKEN
JIRA_URL

Files (3)

License

MIT

Stats

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

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode