spl-to-apl Skill
Translates Splunk SPL queries to Axiom APL. Provides command mappings, function equivalents, and syntax transformations. Use when migrating from Splunk, converting SPL queries, or learning APL equivalents of SPL patterns. Published by openclaw in clawhub.
What is spl-to-apl Skill?
Translates Splunk SPL queries to Axiom APL. Provides command mappings, function equivalents, and syntax transformations. Use when migrating from Splunk, converting SPL queries, or learning APL equivalents of SPL patterns. Published by openclaw in clawhub. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Research
- Data analysis use cases
- Research use cases
Technical details
- Install or run with Copy skill directory
When to use spl-to-apl Skill
- Use it for data analysis.
- Use it for research.
Built with
Editorial notes
Source
- Creator: openclaw
- Repository: openclaw/clawhub
- Skill file: .agents/skills/spl-to-apl/SKILL.md
What it does
Translates Splunk SPL queries to Axiom APL. Provides command mappings, function equivalents, and syntax transformations. Use when migrating from Splunk, converting SPL queries, or learning APL equivalents of SPL patterns.
Skill instructions
SPL to APL Translator Type safety: Fields like status are often stored as strings. Always cast before numeric comparison: toint(status) = 500, not status = 500. --- Critical Differences 1. Time is explicit in APL: SPL time pickers don't translate — add where time between (ago(1h) .. now()) 2. Structure: SPL index=... | command → APL ['dataset'] | operator 3. Join is preview: limited to 50k rows, inner/innerunique/leftouter only 4. cidrmatch args reversed: SPL cidrmatch(cidr, ip) → APL ipv4isinrange(ip, cidr) --- Core Command Mappings | SPL | APL | Notes | |-----|-----|-------| | search index=... | ['dataset'] | Dataset replaces index | | search field=value | where field == "value" | Explicit where | | where | where | Same | | stats | summarize | Different aggregation syntax | | eval | extend | Create/modify fields | | table / fields | project | Select columns | | fields - | project-away | Remove columns | | rename x as y | project-rename y = x | Rename | | sort / sort - | order by ...
Explore related resources
Frequently asked questions
What is spl-to-apl?
spl-to-apl is a open-source AI agent skill with Copy skill directory. Translates Splunk SPL queries to Axiom APL. Provides command mappings, function equivalents, and syntax transformations.
Who is spl-to-apl best for?
spl-to-apl is best for reusing agent instructions, scripts, and references, data analysis workflows, research workflows.
How do I install spl-to-apl?
Install or run spl-to-apl using Copy skill directory. Check spl-to-apl for the latest setup command.
Is spl-to-apl actively maintained?
spl-to-apl may need a closer maintenance check before production use.
Auto-fetched from GitHub.