senior-developer-tool-and-command-execution

senior-developer-tool-and-command-execution is a skill for Claude Code, Codex from sampleXbro/agentsmesh. It costs 18 tokens per session (462 once invoked), scanned A, original, MIT.

A guide for choosing dedicated file-operation tools instead of shell commands when reading, editing, or creating files.

In plain words
What is it for?
Use it when handling project files and when deciding which tool should perform a file operation.
Why use it?
It reduces permission problems, partial edits, and resource issues during file work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/samplexbro/agentsmesh/senior-developer-tool-and-command-execution
Any agent
npx skills add sampleXbro/agentsmesh --skill senior-developer-tool-and-command-execution
Clone the repo
git clone --depth 1 https://github.com/sampleXbro/agentsmesh

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for senior-developer-tool-and-command-execution

README.md
[![agentmods](https://agentmods.dev/badge/skills/samplexbro/agentsmesh/senior-developer-tool-and-command-execution.svg)](https://agentmods.dev/skills/samplexbro/agentsmesh/senior-developer-tool-and-command-execution)
Your own site
<a href="https://agentmods.dev/skills/samplexbro/agentsmesh/senior-developer-tool-and-command-execution"><img src="https://agentmods.dev/badge/skills/samplexbro/agentsmesh/senior-developer-tool-and-command-execution.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 462 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.00462
Opus 5 $0.00009 $0.00231
Sonnet 5 $0.00004 $0.00092
Haiku 4.5 $0.00002 $0.00046

Measured 2d ago against content hash 656c52c4c555, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

senior-developer-tool-and-command-execution scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/senior-developer-tool-and-command-execution/SKILL.md · 41 lines

What it actually says

Purpose

Tool & Command Execution

You have specialized tools for file operations - they're built for this environment and handle permissions correctly, don't hang, and manage resources well. Use them instead of bash commands for file work.

The core principle: Bash is for running system commands. File operations have dedicated tools. Don't work around the tools by using sed/awk/echo when you have proper file editing capabilities.

Why this matters: File operation tools are transactional and atomic. Bash commands like sed or echo to files can fail partway through, have permission issues, or exhaust resources. The built-in tools prevent these problems.

What this looks like in practice:

When you need to read a file, use your file reading tool - not cat or head. When you need to edit a file, use your file editing tool - not sed or awk. When you need to create a file, use your file writing tool - not echo > or cat <<EOF.

❌ Bad: echo "exports.port = 3000" >> config.js ✅ Good: Use edit tool to add the line

❌ Bad: cat < newfile.txt ✅ Good: Use write tool with content

❌ Bad: cat package.json | grep version ✅ Good: Use read tool, then search the content

The pattern is simple: If you're working with file content (reading, editing, creating, searching), use the file tools. If you're running system operations (git, package managers, process management, system commands), use bash. Don't try to do file operations through bash when you have proper tools for it.

Practical habits:

  • Use absolute paths for file operations (avoids "which directory am I in?" confusion)
  • Run independent operations in parallel when you can
  • Don't use commands that hang indefinitely (tail -f, pm2 logs without limits) - use bounded alternatives or background jobs

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 41 lines · 18 tokens per session scan A 656c52c4c555

Subscribe to this mod's changes

senior-developer-tool-and-command-execution is a skill published in the GitHub repository sampleXbro/agentsmesh (24 stars, last pushed yesterday), licensed MIT. It adds 18 tokens to every session and 462 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

peon-ping-toggle

Toggle peon-ping sound notifications on/off. Use when user wants to mute, unmute, pause, or resume peon sounds during a Claude Code session. Also handles config changes like volume, pack rotation, categories — any peon-ping setting.

PeonPing/peon-ping · 58 tokens

peon-ping-log

Log exercise reps for the Peon Trainer. Use when user says they did pushups, squats, or wants to log reps. Examples - "/peon-ping-log 25 pushups", "/peon-ping-log 30 squats", "log 50 pushups".

PeonPing/peon-ping · 64 tokens

planning-with-files

Persistent file-based planning for multi-step AI-agent work. Keeps taskplan.md, findings.md, and progress.md on disk; lifecycle hooks inject selected project planning context. Automatic recovery reads project planning files only. Explicit session-catchup.py --metadata reads same-project local agent session records and…

mxyhi/ok-skills · 117 tokens

Agent Browser Automation

Fast Rust-based headless browser automation CLI with Node.js fallback for AI agents, featuring navigation, clicking, typing, snapshots, and structured commands optimized for agent workflows.

PramodDutta/qaskills · 37 tokens

daily-journal

A passive daily work journal that Claude keeps FOR you so you never have to write it yourself. Append short entries after meaningful work (what was done, what you focused on, artifacts touched) to 01-daily/journal/YYYY-MM-DD.md. Run a guided reflection at night or in the morning. Use when you run /daily-journal, say…

huytieu/COG-second-brain · 107 tokens

slack-messaging

Use when writing, drafting, scheduling, or improving a Slack message, announcement, or reply sent via the Slack MCP tools (slacksendmessage, slacksendmessagedraft, slackschedulemessage). Covers Slack markdown formatting, message structure, thread etiquette, reactions, and scheduling, and points to the right dialect…

slackapi/slack-skills-plugin · 74 tokens