Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add manarouei/agent-skills --skill "node-normalize"
Install specific skill from multi-skill repository
# Description
Immutable snapshot of the normalization request
# SKILL.md
name: node-normalize
version: "1.0.0"
description: Normalize incoming node implementation requests. Generates a correlation ID, converts node names to kebab-case, and creates an immutable request snapshot. Use when starting a new node implementation pipeline.
Contract
autonomy_level: READ
side_effects: []
timeout_seconds: 30
retry:
policy: none
max_retries: 0
idempotency:
required: true
key_spec: "raw_node_name"
max_fix_iterations: 1
Sync Celery Constraints (MANDATORY)
sync_celery:
requires_sync_execution: true
forbids_async_dependencies: true
requires_timeouts_on_external_calls: true
forbids_background_tasks: true
input_schema:
type: object
required: [raw_node_name]
properties:
raw_node_name:
type: string
description: Raw node name from user input
source_refs:
type: object
properties:
ts_path: { type: string }
docs_url: { type: string }
output_schema:
type: object
required: [correlation_id, normalized_name, snapshot]
properties:
correlation_id:
type: string
pattern: "^node-[a-f0-9-]{36}$"
normalized_name:
type: string
pattern: "^[a-z][a-z0-9-]*[a-z0-9]$"
snapshot:
type: object
required_artifacts:
- name: request_snapshot.json
type: json
description: Immutable snapshot of the normalization request
failure_modes: [validation_error]
depends_on: []
Node Normalize
Normalize incoming node implementation requests before processing.
Input
raw_node_name: The raw node name from user input (e.g., "Telegram Bot", "shopify_api")source_refs(optional): Object withts_pathand/ordocs_url
Output
correlation_id: UUID v4 prefixed with "node-" for pipeline trackingnormalized_name: Kebab-case name for filesystem compatibilitysnapshot: Immutable request snapshot with timestamp
Normalization Rules
- Convert to lowercase
- Replace spaces and underscores with hyphens
- Remove special characters (keep only alphanumeric and hyphens)
- Remove consecutive hyphens
- Trim leading/trailing hyphens
Examples
| Input | Output |
|---|---|
| "Telegram Bot" | telegram-bot |
| "shopify_api" | shopify-api |
| "AWS S3" | aws-s3 |
Artifacts Emitted
artifacts/{correlation_id}/request_snapshot.json
Failure Modes
validation_error: Empty or whitespace-only input
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.