Loading...
Loading...
Governance Projects
Manage compliance audits, policy reviews, and certification projects with kanban boards, progress tracking, and team collaboration.
Capabilities
Pre-built templates for compliance audits, policy reviews, certifications, and remediation workflows.
Visual task boards with todo, in progress, review, done, and blocked columns. Drag tasks between stages.
Real-time progress bars for every project. Track completion percentage across all tasks.
Assign tasks to team members with due dates and priority levels. Track workload distribution.
Organize projects with custom tags. Filter by status, type, team member, or deadline.
Gantt-style timeline showing project duration, task dependencies, and milestone dates.
Getting Started
Choose a project type -- compliance audit, policy review, certification, or remediation -- and set timelines.
Break the project into tasks with descriptions, assignees, due dates, and priority levels.
Monitor progress through kanban boards, progress bars, and timeline views. Close tasks as work completes.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Create compliance audit project
const project = await drd.governanceProjects.create({
name: 'SOC2 Type II - Q1 2026',
projectType: 'compliance_audit',
tags: ['soc2', 'annual'],
});
// Add and manage tasks
await drd.governanceProjects.createTask({
projectId: project.id,
title: 'Review access controls',
priority: 'high',
dueDate: '2026-02-28T00:00:00Z',
});Compliance audits, policy reviews, and certifications -- all managed in one place with kanban boards and progress tracking.