惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
博客园_首页
J
Java Code Geeks
Jina AI
Jina AI
B
Blog RSS Feed
量子位
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
博客园 - 聂微东
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
I
InfoQ
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
Y
Y Combinator Blog
Vercel News
Vercel News
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Shipped Production AI Agents in One Week — With Rea...
AI-Hub-Admin · 2026-05-18 · via DEV Community

Hi, I’ve been busy working on two production-grade AI Agent projects, and both are now live online, released on Product Hunt (one reached #36 of the day rank among 200+ products), and actively serving real user traffic.

I’d like to share some of the experiences, technology stack, development process, deployment lessons, and the actual costs involved in building and serving these AI agents. More importantly, I want to show how ideas can quickly become working applications.

First of all, these are not “vibe-coded” rushed projects. Turning ideas into production-ready code, design, deployment, and debugging within one week was still much faster than I expected.

The first project is Craftsman-Agent(https://craftsman-agent.aiagenta2z.com), which turns prompts into buildable 3D assembly charts and step-by-step instructions for creations such as LEGO builds, Minecraft structures, Tesla car wraps, and more.

The platform is designed for creativity and play, targeting:

  • game hobbyists
  • parents and kids
  • 3D design prototyping
  • creative builders

Example prompts include:

“How do I build a blue-and-white LEGO yacht?”
“Design a red LEGO F1 race car.”
“Create a Minecraft-style castle with medieval towers.”

The second project is CoachOwl Agent Timetable (https://coachowl.aiagenta2z.com/), an AI Agent timetable, calendar, and orchestration platform that helps users set objectives and assign tasks to both humans and AI agents (such as Codex, Claude, and Gemini) for collaborative work in:

  • fitness
  • career growth
  • learning
  • personal development
  • productivity planning

The stack I am using:

Server
Python/ Node.js / FastAPI / pnpm serve

LLMs & AI Models
Gemini/ OpenAI /Qwen

APIs(DeepNLP OneKey Gateway)
Google Search APIs
Tavily Search APIs
Nutrition calculation APIs
Gemini Nano Banana image recognition APIs
3D rendering APIs

Deployment & Hosting
AI Agent A2Z platform
One free domain and project per user account (*.aiagenta2z.com)

Coding agent:
Claude
Codex

As you can see, these are fully functioning applications with:

deployed websites and landing pages

  • AI Agent tool usage / pipelines
  • LLM/Agent Gateway Integration
  • External API Fast Integrations (3D/Food Nutrition/Search/Images)

The most important lesson I learned is that shipping production AI systems is far more about orchestration, deployment, debugging, UX, and infrastructure than prompt engineering alone.

1. Craftsman Agent

Design & Development

webpage: https://craftsman-agent.aiagenta2z.com
GitHub: https://github.com/AI-Hub-Admin/Craftsman-agent

I build the main website homepage using claude code/codex in a few minutes. And building the main AI Agent workflow and 3D text-3D instruction using 3 days,
which is more complicated and no free APIs available. The AI Agent workflow of turning text prompts to 3D instruction, for example

text -> 3D parts plans json list -> 3D rendering APIs calling 

Enter fullscreen mode Exit fullscreen mode

Agent Workflow: Text to 3D instruction

For example, a 3D lego boats will needs a inventory of less than 10 to 1000 pieces 3D parts of data in the following formats.
And converting these LLM generated 3D models data into rendering instructions will also involve calling 3D APIs multiple times.
And the raw LLM generated 3D files are actually of pure quality, so SFT and few shots are also needed to enhance the final design.

[
    {
        "color": "red",
        "size": [
            4.0,
            2.0,
            1
        ],
        "position": [
            2,
            1,
            0.5
        ],
        "part_id": 3020,
        "part_name": "Plate 2x4",
        "image": "M3020",
        "categories": "Basic, Architectural, Transportation, Space, Plate, Solid Studs"
    },
    {
        "color": "red",
        "size": [
            2.0,
            1.0,
            1
        ],
        "position": [
            1,
            2,
            1.5
        ],
        "part_id": 3023,
        "part_name": "Plate 1x2",
        "image": "M3023",
        "categories": "Basic, Architectural, Transportation, Space, Plate, Solid Studs"
    },
]

Enter fullscreen mode Exit fullscreen mode

LLM and API Calling: DeepNLP OneKey Agent Gateway of Gemini LLM endpoint and 3D building APIs (https://deepnlp.org/doc/onekey_gateway).

Server/APIs/Skills/MCPs:
The server is developed using python FastAPI backend with endpoints serving both MCPs/Skills and CLIs APIs.
These codes are not open sourced but skills and clis are available to use and registered on OneKey Gateway,
And there are agent run payment paypal endpoint designed to charge per 3D assembly generated.

## endpoint
app = Starlette(
    routes=[
        Route("/chat", chat_endpoint, methods=["POST"]),   # New Chat Endpoint
        Mount("/static", app=StaticFiles(directory= STATIC_DIR.resolve() , html=True), name="static"),
        Mount("/assets", app=StaticFiles(directory= ASSETS_DIR.resolve(), html=True), name="assets"),
        Route("/api/v1/generate_minecraft_build_plan", api_generate_minecraft_build_plan, methods=["POST"]),
        Route("/api/v1/generate_lego_build_plan", api_generate_lego_build_plan, methods=["POST"]),
        Route("/api/v1/generate_tesla_wraps", api_generate_tesla_wraps_build_plan, methods=["POST"]),
        Route("/paypal/agent/purchase/callback", paypal_webhook, methods=["POST"]),
        Mount("/", app=mcp_app),  ## MCP Endpoint Always mounts /mcp
    ],
    lifespan=lifespan,
)

Enter fullscreen mode Exit fullscreen mode

Website Domain & Hosting:
Website: Typescript JS based website serving the /static, /image gallery
https://github.com/aiagenta2z/agent-mcp-deployment-templates/tree/main/quickstart/website_typescript
Doc: https://deepnlp.org/doc/agent_mcp_deployment

Summary:
Cost of time turning the ideas into production AI Agents:

Phase Cost
Development Website (A Few Minutes) + AI Agent Workflow/APIs(3 days)
LLM Tokens & APIs Gemini + 3D Rendering APIs (Not Free, Consume tokens/avg $67 dollars/1k gemini 3.1 image generation/OneKey Credit 5000 credits/1k images call ~ roughly $50/1k images)
Hosting and Domains Free (https://craftsman-agent.aiagenta2z.com) for basic plan with limited mem and CPU usage.
Traffic Routing Get Free Cold Start Traffic from DeepNLP Agent Router for hosted agents.

2. CoachOwl AI Agent Orchestration

Features:

  • Online Timetable & Calendar: CoachOwl Agent has the calendar & timeline features to allows AI Agent to connect, track, assign and schedule tasks for human and AI Agents to collaborative, competible with Google Calendar, Outlook for AI Agents.
  • AI Agent Orchestration: Humans can better assign repetitive & periodic tasks easily to your personal Agents by scheduling, tracking compared to sending messages. Scenario: Repetitively Sending Emails of competitor analysis of ProductHunt daily for 2 weeks. Anaylyzing food calories for 2 weeks. Prepare for SAT/CFA/GRE exams.
  • Add a task & objective: You can add task, objective (AI coach will plans several periodic tasks for you and you can always edit task contents.)
  • AI Coaches: AI Coaches with Special Skills assigns tasks to both human and agents, such as Fitness Coach, Relationship Coach, Career Coach, Relationship Coach, Fitness Coach: Food Calories Analysis, Image Recognition, Career Coach: Search Indutry info and send briefs to Emails. Prepare for Social Media Anouncement, write Blogs. Learning Coaches
  • Easy Voice Input, Habit Tracking, AI Agent Task Scheduling, Connect to Claude Code, Codex, OpenClaw and more.

Support Coaches and Agent Tools & Ability

The app is build on Onekey Agent Router APIs for Image processing, Food Calories Searching, Sending Emails, Deep Research Abilities.

You can always extends more skills to use CoachOwl as an AI Agent Orchestrator to assign tasks to your Local Agents (Codex/Claude/Gemini)

Category Agent Tools & Features
BASE base_search Deep Research of Google Search Tavily Search APIs, send_email_with_attachments Send summary reports to your Email accounts.
Fitness analyze_foods_nutrition_workflow generate nutritions & calories reports from uploaded images or text input
Career track_competitor_launches_producthunt Fetch ProductHunt releases, job_search APIs
Learning Exam mock question generation, such as CFA SAT
Agents OneKey Gateway Supported Agents
Default Default, Server Web Agents on CoachOwl
Codex Local Agents, codex CLIs
Claude Code Local Agents, claude CLIs
Gemini Local Agents, gemini CLIs
OpenClaw Local Agents, openclaw CLIs

Design & Development

Website Homepage: https://craftsman-agent.aiagenta2z.com

Github(Fully OpenSourced): https://github.com/AI-Hub-Admin/CoachOwl-Agent-Timetable

Deployment: https://github.com/aiagenta2z/agent-mcp-deployment-templates

The AI Agent Orchestration

  1. The Timeline (oneday todo list) and the calendar
    The app is build using codex, which costs me one day to finish all the tables design, frontend web design, etc.

  2. Agent Execution system
    Agent Execution include setting up agent tasks (recursive tasks), such as "Deep Research the producthunt AI Agent releases in last 7days and send to my Emails at xxxx@gmail.com".
    The agent execution related include
    """
    /claim task -> /Execution -> Report Heartbeat -> Update Results
    """

The db design and implementation costs 4- 5 days. And for local agents running, use "onekey gateway coachowl/coachowl" to pull tasks from the web, which involves
another one day to complete.

  1. Summary
Phase Cost
Development Website (A Few Minutes) + AI Agent Orchestration API DBs (3 days)
LLM Tokens & APIs Gemini/OpenAI/Qwen
Hosting and Domains Free (https://coachowl.aiagenta2z.com) for basic plan with limited mem and CPU usage.
Traffic Routing Google Search with Domain Verification

Related