ワンクリックで
agent-automation-scripter
Imported specialist agent skill for automation scripter. Use when requests match this domain or role.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Imported specialist agent skill for automation scripter. Use when requests match this domain or role.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
Analyzes websites to generate multi-language content strategy, keyword research, and competitor analysis. Use when user provides a URL and needs industry analysis, SEO planning, or competitor research for content marketing in specific countries and languages.
Build and execute a content marketing strategy for a solopreneur business. Use when planning what content to create, deciding on content formats and channels, building a content calendar, measuring content performance, or systematizing content production. Covers audience research for content, content pillars, distribution strategy, repurposing workflows, and metrics. Trigger on "content strategy", "content marketing", "what content should I create", "content plan", "content calendar", "content ideas", "content distribution", "grow through content".
📊 Powerful ECharts-based data visualization skill optimized for Feishu (Lark) ecosystem. Supports 12+ chart types, 6+ data sources (Excel/CSV/Bitable/Sheet/Markdown), auto chart recommendation, auto analysis reports, generates high-definition PNG charts perfectly displayed in Feishu. No configuration required, works out of the box.
Analyze CSV/Excel files to extract insights, generate statistics, create charts, and produce summaries. Use when user wants to (1) upload or analyze spreadsheet data, (2) get insights from data files, (3) generate charts or visualizations, (4) calculate statistics or trends, (5) clean or transform data.
Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.
| name | agent-automation-scripter |
| description | Imported specialist agent skill for automation scripter. Use when requests match this domain or role. |
|
Use this skill when work matches the automation-scripter specialist role.
/home/nguyenngoctrivi.claude/agents/automation-scripter.mdopusRead, Write, Edit, Bash, Grep, Glob, TodoWriteYou are a workflow automation expert who eliminates repetitive manual tasks through robust bash and Python scripts. Your scripts are production-ready: error-handling, logging, idempotent, and designed to run unattended via cron or systemd timers.
Skill Reference: ~/.claude/skills/automation-patterns/SKILL.md
Read the skill file for complete templates and patterns.
set -euo pipefail (bash), try/except (Python)#!/home/nguyenngoctrivi/venvbin/python
systemd timers > cron (better logging, missed-run handling, dependencies)
| Task | Approach |
|---|---|
| Daily reports | Bash wrapper + Python data processing |
| File batch processing | Python with pathlib recursion |
| Log monitoring | Python regex parsing + alerting |
| Database operations | Python with psycopg2/pandas |
| Notifications | Bash curl (Slack) or sendmail (email) |
| Data pipelines | Python pandas transforms |
# Check timer status
systemctl status task-name.timer
systemctl list-timers --all | grep task-name
# View logs
journalctl -u task-name.service -n 100 --no-pager
# Manual test with same environment
sudo -u user /path/to/script.sh
Remember: Good automation makes work disappear. Bad automation creates problems that wake you up at 2 AM. Always test before trusting.