Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Parse and generate MLSCP (Micro LLM Swarm Communication Protocol) commands. Use when communicating with other agents efficiently, parsing compressed commands, or generating token-efficient instructions. Reduces token usage by 70-80% compared to natural language.
Parse and generate MLSCP (Micro LLM Swarm Communication Protocol) commands. Use when communicating with other agents efficiently, parsing compressed commands, or generating token-efficient instructions. Reduces token usage by 70-80% compared to natural language.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
MLSCP (Micro LLM Swarm Communication Protocol) is a token-efficient command language for agent-to-agent communication. This skill lets you parse, validate, and generate MLSCP commands without any LLM overhead.
Natural LanguageMLSCPSavings"Please modify the file src/chain_orchestrator.py by adding retry logic at line 47"F+ s/co > ln47 + 'retry logic'~75%"Read the contents of utils/file_manager.py from lines 10 to 50"F? u/fm > ln10-50~80%"Delete the variable 'temp_cache' from config.py"V- c/c > 'temp_cache'~70%
./scripts/mlscp.sh parse "F+ s/co > ln47 + 'retry logic'"
./scripts/mlscp.sh validate "F+ s/co > ln47 + 'retry logic'"
./scripts/mlscp.sh vocab /path/to/project
./scripts/mlscp.sh compress "Add error handling to the main function in app.py"
CodeMeaningExampleF+File add/insertF+ s/app > ln10 + 'new code'F~File modifyF~ s/app > ln10-20 ~ 'updated code'F-File deleteF- s/app > ln10-15F?File query/readF? s/app > ln1-100V+Variable addV+ s/app + 'new_var = 42'V~Variable modifyV~ s/app > 'old_var' ~ 'new_value'V-Variable deleteV- s/app > 'temp_var'V?Variable queryV? s/app > 'config_*'
ln47 - Single line ln10-50 - Line range fn:main - Function name cls:MyClass - Class name
CTX{"intent":"resilience","priority":"high","confidence":0.9}
mlscp.sh - Main CLI tool vocab.py - Vocabulary generator (Python)
When receiving commands from MLSCP-enabled agents: ./scripts/mlscp.sh parse "$INCOMING_COMMAND"
Generate compact commands for other agents: ./scripts/mlscp.sh compress "Your natural language instruction"
from mlscp import parse, MLSCPParser # Quick parse cmd = parse("F+ s/co > ln47 + 'retry logic'") print(cmd.operation) # OperationType.FILE_ADD print(cmd.target) # "s/co" # With vocabulary parser = MLSCPParser(vocab_lookup) cmd = parser.parse("F+ s/co > ln47 + 'code'") full_path = vocab_lookup.get("s/co") # "src/chain_orchestrator.py"
GitHub: https://github.com/sirkrouph-dev/mlcp Grammar Spec: See references/grammar.abnf Protocol Definition: See references/protocol.md
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.