You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@ Transmissions is a message-driven pipeline framework where:
85
85
-**Note:** Many more processors exist in `src/processors/`. Always search for existing processors before creating new ones. Use `Glob` to find processors: `src/processors/**/*.js`
86
86
87
87
**Creating New Processors:**
88
+
-**Recommended:** Use the `transmissions-processor` skill for guided processor creation
88
89
- Create processor class in appropriate subdirectory under `src/processors/` (e.g., `src/processors/util/MyProcessor.js`)
89
90
- Extend `Processor` base class and implement `async process(message)` method
90
91
- Import and register in corresponding Factory file (e.g., `src/processors/util/UtilProcessorsFactory.js`):
@@ -95,6 +96,13 @@ Transmissions is a message-driven pipeline framework where:
95
96
- Use `super.getProperty(ns.trn.propertyName, defaultValue)` for configuration
0 commit comments