DEV Community

Fenju Fu
Fenju Fu

Posted on

Agents Can Generate Content — But Who Operates the Systems? The "Last Mile" Problem in AI Automation

Today's GitHub Trending reveals a pattern that every developer building with AI agents should pay attention to.

Let's look at three trending repos:

tt-a1i/archify — An Agent skill that generates beautiful, verifiable architecture, workflow, and sequence diagrams as self-contained HTML with motion and crisp export. The Agent doesn't just describe your system architecture — it draws it, professionally.

zhaoxuya520/reverse-skill — A reverse engineering and security testing skill router pack. It does AI-powered routing (deciding which tool to use), on-demand toolchain bootstrapping (setting up the tool), and self-evolving knowledge base (learning from past runs). Supports Claude Code, Kiro, Cursor, and Cline.

handsomestWei/patent-disclosure-skill — A skill that handles the entire patent workflow: mining patent points, writing disclosure documents for invention/utility/design patents, interpreting patents in plain language, and assisting with examination responses.

The Pattern

All three solve the same half of the problem: Agents generating content and making decisions.

  • archify: Agent generates diagrams ✅
  • reverse-skill: Agent routes toolchains ✅
  • patent-disclosure-skill: Agent writes documents ✅

But here's what nobody is talking about — the other half:

  • After the Agent generates that architecture diagram → who uploads it to Confluence and notifies the team?
  • After the Agent routes the security scan → who files the results in the bug tracking system?
  • After the Agent writes the patent disclosure → who submits it through the patent office portal, fills in all the metadata fields, uploads the attachments, and pays the filing fee?

Today, the answer is: a human, manually clicking through internal systems.

The Last Mile

This is what I call the "last mile" of Agent automation. Content generation is largely solved. System operation is not.

Your Agent can write a perfect patent disclosure document. But submitting it to the patent office portal involves:

  • Logging in
  • Selecting the right patent type from a dropdown
  • Filling in 30+ metadata fields
  • Uploading the document as an attachment
  • Selecting the right category codes
  • Clicking through a 5-step wizard
  • Paying the filing fee
  • Downloading the confirmation

That's not intelligence. That's execution. And it's exactly the kind of repetitive, rule-based, error-prone work that should never require a human.

The Solution: RPA + Agent

This is where iflytek/astron-rpa comes in — an Agent-ready RPA suite designed for exactly this gap:

  • Agent does the thinking: judgment, routing, content generation, decision-making
  • RPA does the doing: form filling, file uploading, button clicking, report exporting
  • Unattended execution: no human needs to babysit the process

Astron RPA desktop application interface showing unattended execution capabilities

And when you pair it with iflytek/astron-agent — an enterprise-grade agentic workflow platform — you get the full stack:

Agent (brain) → RPA (hands) → Real System (target)
     ↑                                    |
     └────────── feedback ────────────────┘
Enter fullscreen mode Exit fullscreen mode

The Agent decides what needs to happen. The RPA suite executes it in real systems. The result feeds back to the Agent for the next step. No human in the loop.

Astron Agent workflow orchestration canvas demonstrating multi-step process automation

Why This Matters Now

Today's Trending proves that Agent content generation is mature. archify's diagrams are beautiful. reverse-skill's routing is smart. patent-disclosure-skill's documents are usable.

But mature content generation without system execution is like having a brilliant strategist who can plan a military campaign but can't move a single soldier. The plan is perfect. The execution is zero.

The next wave of Agent tooling won't be about generating better content. It'll be about operating real systems without humans in the loop.

That's the last mile. And it's the mile that matters.


Tags: aiagents, rpa, automation, opensource

Top comments (0)