📰 News
Latest updates and new features from SysEmperor.
Six New Tutorials — Including a Deep Dive on Claude Code Agent Teams
June 21, 2026
Six new tutorials just landed across the AI, Linux, DevOps, Networking, and Databases sections. The headliner is a significantly expanded guide on building and operating a custom Claude Code agent team.
Claude Code Agent Teams — Now With Custom Agents, CLAUDE.md Docs, and Cost Tracking
The Claude Code Agent Teams tutorial has been rewritten to cover the full workflow for building a production-ready agent team, not just the basics of spawning one.
Defining your own agents. Agent files live at ~/.claude/agents/ for global scope (available in every project) or .claude/agents/ for project scope (only available in that directory). Each file is a Markdown document with a YAML frontmatter block that sets the agent's name, description, model, and tool access — followed by the system prompt.
The description field deserves special attention: Claude Code reads it to decide which agent to invoke automatically. A vague description like "helps with code" will never be matched. A specific trigger condition — "Use when asked to write or refactor code — hand it a specific file or feature, never an open-ended question" — will be matched reliably every time.
Five ready-to-copy agent definitions. The tutorial includes complete, ready-to-use agent files for the most common roles:
- builder (Sonnet) — surgical code writer that reads existing conventions before making any change
- reviewer (Haiku) — read-only auditor for correctness bugs and security issues, cheap to run after every build
- scout (Haiku) — pure data retrieval agent with no reasoning; run multiple in parallel to gather file paths, function signatures, and config values for a fraction of the cost of a Sonnet pass
- planner (Opus) — produces step-by-step implementation plans and architectural analysis before any large feature
- writer (Sonnet) — technical documentation and tutorial writing, does not touch code
Documenting the team in CLAUDE.md. The tutorial explains how to write the agent crew table and delegation rules inside your CLAUDE.md so Claude Code knows which agents to use, when to escalate, and which agents are out of scope for a given directory. Project-level CLAUDE.md files take precedence over global ones, so different packages in a monorepo can have different agent policies.
Usage and cost tracking. The /cost command gives a real-time session breakdown — input tokens, output tokens, cache reads, and estimated cost. The tutorial covers how prompt cache hits keep long sessions cheap, and links to the account-level dashboard for billing history.
Related commands. /agents lists every available agent with its description and scope. /model inspects or switches the active model mid-session.
Five More Tutorials Across Five Categories
How to Set Up an Nginx Reverse Proxy — Virtual host setup, SSL termination with Certbot, WebSocket support, proxy timeouts, and serving multiple apps on the same server. The go-to reference for putting any backend behind Nginx in production.
How to Use rsync to Sync Files on Linux — The trailing slash rule, syncing over SSH, --delete mirroring, exclude patterns, incremental backups with --link-dest, and automating with cron.
curl Command Examples for Linux — A practical cheat sheet covering GET, POST, PUT, PATCH, DELETE, bearer tokens, basic auth, file uploads, redirect following, response header inspection, and request timing with %{time_starttransfer} and %{time_total}.
PostgreSQL Connection Pooling with PgBouncer — Install PgBouncer, configure transaction-mode pooling, set up the user list, monitor the pool via the admin console, handle the prepared-statement caveat, and size default_pool_size correctly against PostgreSQL's max_connections.
Docker Network Modes Explained: bridge, host, and none — Why the default bridge network does not resolve container names (and custom networks do), when to use host mode and why it is Linux-only, port mapping internals, and the correct network isolation pattern for Docker Compose.
All tutorials are free, no account required.
New Tool: EXPLAIN Query Analyzer for PostgreSQL
May 28, 2026
SysEmperor just launched the EXPLAIN Query Analyzer — a free, browser-based tool that turns raw PostgreSQL query plans into plain-English bottleneck reports with ready-to-run fixes.
What it does
Paste the output of EXPLAIN (ANALYZE, BUFFERS) — with or without your original SQL — click Analyze, and the tool immediately tells you:
- Which nodes are slow — each bottleneck is flagged with a severity level (High / Medium) and the percentage of total execution time it consumed
- Why it's slow — plain-English explanation of what the node is doing and why that's a problem for your data volume
- What to do about it — specific, copy-ready SQL snippets for indexes,
ANALYZEcalls, andwork_memsettings
What it detects
- Sequential scans on large tables — if you also paste the SQL query, the tool reads your
ON,WHERE, andORDER BYclauses to suggest the exact column and index name to create - Stale statistics — when PostgreSQL's row-count estimate is off by 10× or more, the planner picks wrong join types and sort strategies; the tool flags it and tells you which table to
ANALYZE - Disk sorts —
Sort Method: external merge Diskmeans the sort spilled to temporary files because it exceededwork_mem; the tool gives you the exact setting to change - Nested Loop at scale — loops with a large iteration product that would benefit from an inner-side index or a Hash Join
- HashAggregate disk spill — aggregation that batched to disk due to memory pressure
How to use it
Run this in psql or any PostgreSQL client, then paste the output into the tool:
EXPLAIN (ANALYZE, BUFFERS, FORMAT TEXT) SELECT …;
Everything runs in your browser — no query data is sent anywhere.
Two New Free Tools: Project Planner with Gantt Chart & chmod Calculator
May 4, 2026
SysEmperor just added two new browser-based developer tools — free to use, no sign-up, no data sent to any server.
Project Planner — Visual Gantt Chart for Developers
The Project Planner is a full-featured project and task management tool that runs entirely in your browser.
Key features:
- Interactive Gantt chart — drag and resize task bars directly on the timeline to reschedule work
- Nested projects and tasks — organize work into projects, sub-projects, and subtasks with unlimited depth
- Dependency arrows — visually link tasks that block each other so critical paths are immediately obvious
- Four zoom levels — switch between day, week, month, and quarter views to zoom in on sprints or zoom out for roadmaps
- Detail panel — set priority, status, start date, duration, and deadline per task with a click
- Workspace persistence — save your entire workspace as a JSON file or to browser storage, and reload it any time
- No account required — your project data never leaves your machine
This tool is built for developers and sysadmins who want fast, lightweight project visibility without subscribing to Jira or Notion.
chmod Calculator — Build Linux File Permissions Visually
The chmod Calculator removes the guesswork from Linux file permission management.
Key features:
- Visual permission builder — toggle read, write, and execute bits for owner, group, and others using checkboxes instead of memorizing octal
- Import from
ls -loutput — paste a permissions string like-rwxr-xr--and the tool decodes it instantly - Octal import — enter
755,644, or any other octal code and see the full permission breakdown - Live chmod command — the correct
chmodcommand updates in real time as you build your permissions, ready to copy and run - Covers all common cases — setuid, setgid, sticky bit included
Whether you're configuring a web server, writing deploy scripts, or studying for the LPIC or CompTIA Linux+ exam, the chmod Calculator gives you the exact command you need in seconds.
AI Skills — Skill File Downloads Now Available
April 27, 2026
The AI Skills section now offers direct skill file downloads alongside every prompt. Click the Download button on any skill page to save the .md file straight to your machine — ready to drop into your Claude skills directory and use immediately as a slash command.
This makes the workflow end-to-end: read the prompt, understand what it does, then install it in one click instead of copying and pasting manually. The downloaded file already includes the correct frontmatter and formatting that Claude expects, so there's no extra editing required.
All existing skills in the Education category — Certifications and School — are covered.
AI Skills & Tutorials — Free Learning Resources Now Live
April 20, 2026
SysEmperor just launched two brand-new sections: AI Skills and Tutorials — completely free, no Pro account required, for everyone.
Find them in the top navigation bar, right next to the logo.
AI Skills
A growing library of ready-to-use prompts organized by category. Stop writing the same instructions from scratch every session — copy a proven prompt, paste it into your AI tool of choice, and get better results immediately.
The first category is Education, with two subcategories:
- Certifications — Prompts for AWS Cloud Practitioner, CompTIA Security+, Google Professional Cloud Architect, and Kubernetes CKA exam preparation. Each prompt includes a structured study plan, practice questions, and tips for getting the most out of your AI sessions.
- School — Prompts for essay writing feedback, step-by-step math tutoring, research paper outlines, foreign language conversation practice, and science concept explanations. Tuned for students at every level.
More categories are on the way — covering development, DevOps, system administration, and beyond.
Tutorials
Step-by-step guides focused on practical AI workflows. The first tutorial in the AI category covers How to Implement a Skill into Claude — a complete walkthrough for importing a custom slash command created by someone else into your own Claude Code environment, including directory setup, file placement, tab-completion verification, and troubleshooting.
Tutorials are written for developers who want clear, no-fluff instructions they can follow in minutes.
Why Free?
AI prompts and tutorials make every developer faster, regardless of budget. These resources belong to the community — gated content would defeat the point.
Expect new prompts and tutorials to appear regularly. Check this page for updates.
Cron Visual Editor — Export to Excel & Markdown
March 11, 2026
The Cron Visual Editor now includes a Document export feature. Click the Document ▾ button in the toolbar (next to Download) to export your crontab as a document, ready to archive, in your choice of format:
- Excel (.xlsx) — A spreadsheet with Status, Schedule, individual cron fields (MIN, HOUR, DOM, MON, DOW), Command, and a plain-English explanation for each entry
- Markdown (.md) — A portable Markdown table with the same content, plus a generation timestamp
On desktop, hover over the button to reveal the format picker. On mobile, tap it to open the menu.
This feature is part of our ongoing effort to make SysEmperor a complete workflow for developers who need to design, develop, and document their applications — including infrastructure scheduled through cron.
SysEmperor