npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@velocity-bpa/n8n-nodes-broadcom-clarity-ppm

v1.0.0

Published

n8n community node for Broadcom Clarity PPM integration

Readme

n8n-nodes-broadcom-clarity-ppm

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

An n8n community node for integrating with Broadcom Clarity PPM. This node provides 6 resources with full CRUD operations, enabling comprehensive project portfolio management automation including projects, tasks, resources, timesheets, investments, and portfolio items.

n8n Community Node License TypeScript PPM Portfolio Management Project Management

Features

  • Complete Project Management - Create, read, update and delete projects with full metadata support
  • Task Management - Comprehensive task operations including assignments, dependencies, and status tracking
  • Resource Management - Manage human and material resources with availability and allocation tracking
  • Timesheet Integration - Full timesheet functionality for time tracking and project billing
  • Investment Portfolio - Handle investment requests, approvals, and portfolio analysis
  • Portfolio Items - Manage strategic portfolio items with governance and reporting capabilities
  • Enterprise Authentication - Secure API key-based authentication for enterprise environments
  • Error Handling - Robust error handling with detailed error messages and retry mechanisms

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-broadcom-clarity-ppm
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-broadcom-clarity-ppm

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-broadcom-clarity-ppm.git
cd n8n-nodes-broadcom-clarity-ppm
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-broadcom-clarity-ppm
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Broadcom Clarity PPM API key | ✓ | | Server URL | Base URL of your Clarity PPM instance (e.g., https://clarity.company.com) | ✓ | | API Version | API version to use (default: v15.9.3) | ✗ |

Resources & Operations

1. Project

| Operation | Description | |-----------|-------------| | Create | Create a new project with specified parameters | | Get | Retrieve project details by ID or code | | Get All | List all projects with optional filtering | | Update | Update existing project properties | | Delete | Remove a project from the system |

2. Task

| Operation | Description | |-----------|-------------| | Create | Create a new task within a project | | Get | Retrieve task details by ID | | Get All | List all tasks with filtering options | | Update | Update task properties and assignments | | Delete | Remove a task from the project |

3. Resource

| Operation | Description | |-----------|-------------| | Create | Create a new resource (human or material) | | Get | Retrieve resource details and availability | | Get All | List all resources with filtering capabilities | | Update | Update resource information and allocations | | Delete | Remove a resource from the system |

4. Timesheet

| Operation | Description | |-----------|-------------| | Create | Create timesheet entries for resources | | Get | Retrieve timesheet data by ID or period | | Get All | List timesheets with date and resource filters | | Update | Update timesheet entries and submit for approval | | Delete | Remove timesheet entries |

5. Investment

| Operation | Description | |-----------|-------------| | Create | Create new investment requests | | Get | Retrieve investment details and status | | Get All | List investments with portfolio filtering | | Update | Update investment information and status | | Delete | Remove investment from portfolio |

6. Portfolio Item

| Operation | Description | |-----------|-------------| | Create | Create strategic portfolio items | | Get | Retrieve portfolio item details | | Get All | List all portfolio items with categorization | | Update | Update portfolio item properties and status | | Delete | Remove portfolio item from strategic view |

Usage Examples

// Create a new project
{
  "name": "Digital Transformation Initiative",
  "code": "DTI-2024",
  "manager": "[email protected]",
  "startDate": "2024-01-15",
  "finishDate": "2024-12-31",
  "description": "Company-wide digital transformation project",
  "priority": "High"
}
// Create a task within a project
{
  "projectCode": "DTI-2024",
  "name": "Requirements Analysis",
  "duration": 40,
  "assignedResource": "[email protected]",
  "predecessors": [],
  "startDate": "2024-01-15"
}
// Log timesheet entry
{
  "resourceId": "[email protected]",
  "projectCode": "DTI-2024",
  "taskId": "REQ-001",
  "date": "2024-01-15",
  "hours": 8,
  "description": "Stakeholder interviews and documentation"
}
// Create investment request
{
  "name": "AI Implementation Project",
  "requestedAmount": 250000,
  "businessCase": "Improve operational efficiency by 30%",
  "category": "Technology",
  "requestor": "[email protected]",
  "priority": "High"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and active | | Resource Not Found | Requested project, task, or resource doesn't exist | Check ID/code exists in Clarity PPM | | Insufficient Permissions | User lacks rights for requested operation | Contact admin to grant appropriate permissions | | Validation Error | Required fields missing or invalid data format | Review field requirements and data types | | Server Timeout | Clarity PPM server didn't respond within timeout | Check server status and network connectivity | | Rate Limit Exceeded | Too many API requests in time window | Implement delays between requests |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support