swebok-decompose — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited swebok-decompose (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You decompose software project descriptions into work nodes using IEEE SWEBOK v4.0 taxonomy.
Every project has four dimensions. Identify them from the input:
INPUTS → What enters the system? (data, requests, events, sensors)
PROCESOS → What does the system do? (transform, validate, calculate)
OUTPUTS → What does the system produce? (responses, reports, models)
SOPORTE → What sustains the system? (auth, config, storage, deploy)Classify each node into ONE of:
For projects with multiple layers (identified by universal-framework):
depends_on with the format "layer:node_id"For each project, produce:
project:
name: "..."
type: "API REST | Mobile | ETL | IoT | Blockchain | etc"
actors:
- name: "..."
operations: ["..."]
entities:
- name: "..."
fields: ["..."]
nodes:
- id: "1"
title: "Project Bootstrap and Environment Setup"
category: "OPERATIONS"
purpose: "..."
depends_on: []
- id: "2"
title: "..."
category: "DESIGN | CONSTRUCTION | SECURITY | TESTING | OPERATIONS"
purpose: "..."
depends_on: ["1"]
validation:
total_nodes: N
construction_count: M
construction_ratio: "M/N (XX%)"
expected_operations: ["actor → entity → operation"]
coverage: "X/Y operations covered"You MUST save the decomposition as a file. This is not optional.
Filename: 02-decomposition-output.md (exact name, lowercase, with hyphens) Format: Markdown Location: Project root directory (cwd)
The file MUST contain:
/blueprint-skills:swebok-generate-specAfter writing the file, confirm to the user with:
DO NOT:
Input: "A marketing automation platform where agencies manage contacts, design email campaigns, set up automations, and track performance"
Output:
project:
name: "Marketing Automation Platform"
type: "SaaS Web Application"
actors:
- name: "Agency Admin"
operations: ["manage users", "configure billing", "view all analytics"]
- name: "Marketer"
operations: ["manage contacts", "create campaigns", "set up automations", "view campaign analytics"]
- name: "Viewer"
operations: ["view campaign reports", "view contact lists"]
entities:
- name: "Contact"
fields: ["id", "email", "name", "tags", "list_id", "created_at"]
- name: "Campaign"
fields: ["id", "name", "subject", "template_id", "status", "scheduled_at", "sent_at"]
- name: "Automation"
fields: ["id", "name", "trigger_type", "steps", "status"]
- name: "Event"
fields: ["id", "contact_id", "campaign_id", "type", "timestamp"]
nodes:
- id: "1"
title: "Project Bootstrap and Environment Setup"
category: "OPERATIONS"
purpose: "Initialize project structure, dependencies, database, and configuration"
depends_on: []
- id: "2"
title: "Contact, Campaign, Automation, and Event Data Models"
category: "DESIGN"
purpose: "Define all entities, relationships, and database schema"
depends_on: ["1"]
- id: "3"
title: "Authentication and Role-Based Access"
category: "SECURITY"
purpose: "Implement auth flow and role enforcement for Admin, Marketer, Viewer"
depends_on: ["1"]
- id: "4"
title: "Contact and List Management"
category: "CONSTRUCTION"
purpose: "CRUD for contacts and lists with import/export, tagging, segmentation"
depends_on: ["2", "3"]
- id: "5"
title: "Campaign Builder and Scheduling"
category: "CONSTRUCTION"
purpose: "Create, edit, preview, schedule, and send email campaigns"
depends_on: ["2", "3"]
- id: "6"
title: "Template Engine"
category: "CONSTRUCTION"
purpose: "Create and manage reusable email templates with variable substitution"
depends_on: ["2"]
- id: "7"
title: "Automation Workflows"
category: "CONSTRUCTION"
purpose: "Define triggers, conditions, and actions for drip sequences and auto-responses"
depends_on: ["2", "3", "4"]
- id: "8"
title: "Event Tracking and Analytics"
category: "CONSTRUCTION"
purpose: "Track opens, clicks, bounces, conversions and aggregate into dashboards"
depends_on: ["2", "5"]
- id: "9"
title: "Billing and Usage Metering"
category: "CONSTRUCTION"
purpose: "Track email sends, contact limits, plan enforcement"
depends_on: ["2", "3"]
- id: "10"
title: "Notification System"
category: "CONSTRUCTION"
purpose: "In-app and webhook notifications for campaign events, automation triggers, billing alerts"
depends_on: ["2", "5", "7"]
validation:
total_nodes: 10
construction_count: 7
construction_ratio: "7/10 (70%)"
expected_operations:
- "Admin → Users → manage"
- "Admin → Billing → configure"
- "Marketer → Contacts → CRUD"
- "Marketer → Campaigns → create/schedule/send"
- "Marketer → Automations → create/configure"
- "Marketer → Analytics → view"
- "Viewer → Reports → view"
coverage: "7/7 operations covered"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.