Files
agent-skills/skills/text-concatenation-pipeline/SKILL.md
T
2026-08-08 22:42:46 +00:00

1.9 KiB

name, version, description, inputs, steps, outputs, tags, metadata
name version description inputs steps outputs tags metadata
text-concatenation-pipeline 1.0.0 Combine two text inputs into a single output string using a Blacknode node graph.
text_a (string)
text_b (string)
Instantiate a Text node with parameter value set to text_a
Instantiate a Text node with parameter value set to text_b
Instantiate a Concat node with no parameters
Instantiate an Output node
Connect output port 'value' of first Text node to input port 'a' of Concat node
Connect output port 'value' of second Text node to input port 'b' of Concat node
Connect output port 'value' of Concat node to input port 'value' of Output node
Execute graph by cooking the Output node's 'value' port to obtain result
concatenated_text (string)
source_repo extracted_at confidence
https://github.com/temiroff/Blacknode.git 0.95

text-concatenation-pipeline

Combine two text inputs into a single output string using a Blacknode node graph.

Steps

  1. Instantiate a Text node with parameter value set to text_a
  2. Instantiate a Text node with parameter value set to text_b
  3. Instantiate a Concat node with no parameters
  4. Instantiate an Output node
  5. Connect output port 'value' of first Text node to input port 'a' of Concat node
  6. Connect output port 'value' of second Text node to input port 'b' of Concat node
  7. Connect output port 'value' of Concat node to input port 'value' of Output node
  8. Execute graph by cooking the Output node's 'value' port to obtain result

Inputs

  • text_a (string)
  • text_b (string)

Outputs

  • concatenated_text (string)

Failure Modes

  • One or both text inputs missing or non-string
  • Invalid node connections (port mismatch)
  • Runtime error during graph execution

Source

Extracted from: https://github.com/temiroff/Blacknode.git Confidence: 0.95