tpmjs/packages/tools/official/data-classification-heuristic
Ajax Davis 5c9f1a1d0a chore: update dependencies with compatibility fixes
- Update all packages to latest versions via pnpm update --latest
- Downgrade Prisma 7 to 6 (v7 requires schema migration)
- Downgrade Tailwind CSS 4 to 3 (v4 requires PostCSS migration)
- Downgrade Storybook 10 to 8 (addons not available in v10)
- Pin cheerio to 1.0.0-rc.12 via pnpm override (type exports changed)
- Fix AI SDK tool definitions: parameters -> inputSchema
- Fix cheerio types in extract-meta and table-extract tools
- Add explicit type annotations to tool execute functions
- Migrate biome config to v2.3.11 schema

All type-checks, tests, and builds pass.
2026-01-09 22:49:41 +10:00
..
src feat: add 55 new business tools and improve existing implementations 2026-01-01 19:23:32 +10:00
CHANGELOG.md chore: version packages 2025-12-31 23:54:47 +10:00
package.json chore: update dependencies with compatibility fixes 2026-01-09 22:49:41 +10:00
README.md feat: add 100+ official TPMJS tools 2025-12-31 22:55:56 +10:00
tsconfig.json feat: add 100+ official TPMJS tools 2025-12-31 22:55:56 +10:00
tsup.config.ts feat: add 100+ official TPMJS tools 2025-12-31 22:55:56 +10:00

Data Classification Heuristic Tool

Classifies data sensitivity using pattern-based heuristics to detect PII, financial data, health data, and other sensitive information.

Installation

npm install @tpmjs/tools-data-classification-heuristic

Usage

import { dataClassificationHeuristic } from '@tpmjs/tools-data-classification-heuristic';

const result = await dataClassificationHeuristic.execute({
  text: "Contact John Doe at john.doe@example.com or call 555-123-4567. SSN: 123-45-6789"
});

console.log(result);
// {
//   classification: 'restricted',
//   signals: [
//     { type: 'Email', severity: 'medium', description: 'Email address detected', matches: 1 },
//     { type: 'Phone', severity: 'medium', description: 'Phone number detected', matches: 1 },
//     { type: 'SSN', severity: 'critical', description: 'Social Security Number detected', matches: 1 }
//   ],
//   confidence: 0.8,
//   summary: {
//     totalSignals: 3,
//     highestSeverity: 'critical',
//     categories: ['PII']
//   }
// }

Classification Levels

  • public - No sensitive data detected, safe for public distribution
  • internal - Low-medium sensitivity data, internal use only
  • confidential - High sensitivity data, restricted distribution
  • restricted - Critical data (SSN, credentials, financial), highly restricted

Detected Patterns

PII (Personal Identifiable Information)

  • Social Security Numbers (SSN)
  • Email addresses
  • Phone numbers
  • Dates of birth
  • Physical addresses

Financial Data

  • Credit card numbers
  • Bank account numbers
  • Routing numbers
  • Salary information

Health Data (HIPAA)

  • Medical record numbers
  • Diagnoses
  • Prescriptions

Government IDs

  • Passport numbers
  • Driver license numbers

Authentication

  • API keys
  • Passwords
  • Access tokens

Technical

  • IP addresses

Output Schema

interface DataClassification {
  classification: 'public' | 'internal' | 'confidential' | 'restricted';
  signals: Array<{
    type: string;
    pattern: string;
    severity: 'low' | 'medium' | 'high' | 'critical';
    description: string;
    matches?: number;
  }>;
  confidence: number; // 0-1 scale
  summary: {
    totalSignals: number;
    highestSeverity: string;
    categories: string[];
  };
}

Use Cases

  • Data Loss Prevention (DLP) - Scan documents before sharing
  • Compliance Auditing - Identify sensitive data in databases
  • Email Filtering - Classify email content sensitivity
  • Document Review - Automatically classify documents for access control
  • Privacy Impact Assessment - Detect PII in data processing activities

Limitations

  • Heuristic-based detection (pattern matching only)
  • May produce false positives (e.g., random number sequences)
  • Does not understand context or semantic meaning
  • Should be used as a first-pass filter, not definitive classification
  • Cannot detect all types of sensitive data (e.g., trade secrets require domain knowledge)

License

MIT