Logeion Agentic Executor
Description
A cli tool for agents giving them the ability for batch tool calling and multi step workflows in python language
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Agentic Executor
The execution layer for AI agents that need real hands
[](https://github.com/Logeion/agentic-executor) []() []() []()
AI agents are powerful thinkers but poor actors. They call one tool, wait for a result, call another tool, wait again. Every step is a round-trip.
**Agentic Executor** gives the agent a Python interpreter and a set of high-performance commands. Instead of ten tool calls, it writes one script. Loops, conditionals, error handling — all in a single thought.
# One thought. Ten files. Zero round-trips.
python -m agentic_executor.cli --thought-stdin <<'EOF'
files = execute('search', {'pattern': '*.py'})
for f in files['data']['files']:
result = execute('read', {'path': f, 'lines': 5})
if result['success']:
print(f"=== {f} ===")
print('\n'.join(result['data']['lines']))
EOF
Install
pip install agentic-executor
No dependencies. Works immediately with Python's built-in `ast` for Python files. For full multi-language support (20+ languages via tree-sitter):
pip install "agentic-executor[languages]"
Activate the /exec skill
After installing, deploy the `/exec` skill to your AI agent of choice:
exec-install # Claude Code (default)
exec-install --agent cursor # Cursor
exec-install --agent windsurf # Windsurf
exec-install --agent kiro # Kiro
exec-install --agent codex # Codex
exec-install --agent copilot # GitHub Copilot
exec-install --agent opencode # OpenCode
exec-install --agent aider # Aider
exec-install
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development