Inspiration

AI agents are starting to work like real teammates. They can research, write, deploy, publish, and help with revenue work. That is powerful, but it creates a new problem for solo builders: the agent may move faster than the human can safely supervise.

Agent Revenue Control Room is built for that moment. The goal is not silent autopilot. The goal is faster human-AI work where cost, proof, approval, and handoff are always visible.

What it does

Agent Revenue Control Room turns an AI-agent run into a human-reviewable work packet.

A solo builder can:

  • pick an agent run
  • read a plain-language summary
  • check the evidence ledger
  • check the cost guard and stop rule
  • build a Qwen review packet
  • approve, ask for proof, or stop
  • leave an action log for the next human or AI

The first screen answers the judging question directly: who it is for, what pain it solves, and which live proof exists.

How Qwen is used

Qwen is used for bounded review-packet generation: summarizing an agent run, restating evidence, cost, approval, and stop conditions.

Qwen does not approve work by itself. The human still chooses approve, ask for proof, or stop.

How Alibaba Cloud is used

Alibaba Cloud Function Compute hosts the live backend proof endpoint:

https://agent-rrol-room-qaoqbueeak.ap-northeast-1.fcapp.run/healthz

The public endpoint returns HTTP 200 for normal GET requests and proves that the backend is running on Alibaba Cloud. It intentionally returns safe no-key packets for public demos.

How we built it

The frontend is a lightweight HTML/CSS/JavaScript app deployed on GitHub Pages.

The backend is a Python service deployed on Alibaba Cloud Function Compute. The public Function Compute endpoint is intentionally configured without a Qwen API key, so it can be safely used as a public proof endpoint without exposing secrets.

The repository keeps the proof split on purpose:

  • Qwen Cloud live model proof
  • Alibaba Function Compute live endpoint proof
  • public UI and demo proof

This keeps the project honest and makes secret-handling risk visible instead of hiding it.

Challenges

The hardest part was balancing real platform proof with safe secret handling. For a hackathon, it is tempting to show one simple success path. But agent tools are dangerous if they hide cost or credential risk. I chose to separate Qwen model proof from the public Alibaba endpoint proof, so judges can see both the real integration and the safety boundary.

Accomplishments

  • built a bilingual English/Japanese operational console
  • deployed a live Alibaba Function Compute backend
  • verified the public UI calls the Alibaba endpoint
  • recorded Qwen Cloud live smoke evidence
  • added an evidence ledger, cost guard, human gate, and action log
  • kept raw secrets out of Git, screenshots, logs, and the public endpoint
  • created a public demo video, architecture diagram, and verification scripts

What we learned

The core problem of agentic software is not just making agents act. It is making agent work reviewable.

When AI agents can touch revenue, deployment, publishing, or customer workflows, the missing layer is not another chatbot. It is a control room that shows cost, proof, approval, and handoff.

Links

Claim boundary

The public Alibaba Function Compute endpoint is intentionally deployed without a Qwen API key. Live Qwen model proof and Alibaba Cloud deployment proof are both present, but they are recorded separately.

Built With

Share this project:

Updates