Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

audosaudos 搜索

Agent Skill

audos 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

32,136

周安装

1,339

GitHub Stars

公开资料未说明

下载量

10,712
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:audos(audos 搜索)
来源仓库:https://github.com/werdelin/audos
安装命令:
openclaw skills install audos
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install audos

简介

通过 Audos API 创建人工智能驱动的启动工作区。当用户想要创业、构建 MVP、验证创业想法、创建公司工作空间、推出产品或踏上创业之旅时使用。触发诸如“我有一个商业想法”、“帮助我创办一家公司”、“创建一个启动工作区”或“我想构建[产品]”等请求。

SKILL.md

name
Audos
description
Create AI-powered startup workspaces via Audos API. Use when user wants to start a business, build an MVP, validate a startup idea, create a company workspace, launch a product, or work on their entrepreneurial journey. Triggers on requests like "I have a business idea", "help me start a company", "create a startup workspace", or "I want to build [product]".

Audos Workspace Builder (API v1.2)

Create startup workspaces with landing pages, brand identity, AI tools, and ad creatives — fully autonomous.

Base URL

https://audos.com/api/agent/onboard

URL Construction

The API returns URLs using the current deployment domain:

"urls": {
  "landingPage": "https://audos.com/site/184582",
  "workspace": "https://audos.com/space/workspace-184582"
}

Use these URLs directly — no domain swapping needed.

Quick Reference

ActionMethodEndpoint
API docsGET/
Start onboardingPOST/start
Verify OTPPOST/verify
Check build statusGET/status/:workspaceId
Check build status (alt)POST/status
Chat with OttoPOST/chat
Chat with OttoPOST/chat/:workspaceId
Rebuild (if failed)POST/rebuild/:workspaceId

Authentication

  • Token format: aud_live_xxxx (48 hex chars after prefix)
  • Auth tokens never expire — store persistently by email
  • Session tokens expire in 30 min (only needed during OTP flow)
  • Preferred: Bearer token in Authorization header
  • Alternative: authToken or sessionToken in request body

Conversation Flow

Introducing Audos

When a user expresses a business idea, briefly explain what Audos does before asking for their email:

"I can help you build that with Audos! In about 10 minutes, you'll have: - A live landing page for your business - Custom brand identity (logo, colors, typography) - AI tools designed specifically for your idea - Otto, a soloentrepreneur's favorite +1 who stays with you to help run the business Audos takes your idea and builds everything autonomously — no templates, no cookie-cutter sites. Everything is custom to your business. To get started, what email should I use for your account?"

New Users Flow

  1. Collect user's email + business idea
  2. StartPOST /start (sends 4-digit OTP to email)
  3. VerifyPOST /verify with OTP code → returns authToken + starts build
  4. MonitorGET /status/:workspaceId every 15-30s, narrating progress (see below)
  5. Watch for landingPageReady: true (~10 min) — core build done
  6. Introduce Otto and offer to chat

Returning Users (have workspace)

  1. StartPOST /start with email
  2. Response includes auth_token + urls directly — skip OTP!
  3. ChatPOST /chat/:workspaceId immediately

Polling During Build — UX Guidelines

Critical: The build takes ~10 minutes. Users MUST see progress updates or they'll think it's stuck.

Polling Pattern

Poll every 15-20 seconds (NOT 60s!)
After each poll, IMMEDIATELY send a message with current state
Don't wait until done — update the user continuously

Progress Message Format

Send a message like this after EACH poll:

🏗️ Building "Business Name"...

Step 4/7 ✅ Brand Identity
  • Color palette: done
  • Logo: done

Step 5/7 🔄 Hero Video (70%)
  • Scenes: done
  • Rendering: in progress

Step 6/7 ⏳ Workspace Apps
  • Waiting to start

⏱️ ~3 min remaining

Status Icons

  • ✅ Complete
  • 🔄 In progress (show sub-task if available)
  • ⏳ Waiting/pending
  • ❌ Failed (offer /rebuild)

Parsing parallelBuildStatus

The API returns detailed task breakdown in parallelBuildStatus:

// Example parsing
for (const step of status.parallelBuildStatus) {
  const icon = step.status === 'done' ? '✅' : 
               step.status === 'in_progress' ? '🔄' : '⏳';
  console.log(`${icon} ${step.name}`);
  for (const task of step.tasks) {
    const taskIcon = task.status === 'complete' ? '✓' : 
                     task.status === 'in_progress' ? '→' : '○';
    console.log(`  ${taskIcon} ${task.name}`);
  }
}

Implementation

DO THIS (good UX):

1. Poll status
2. IMMEDIATELY send message to user with formatted progress
3. Wait 15 seconds
4. Repeat until landingPageReady === true
5. Send completion message with links

DON'T DO THIS (bad UX):

sleep 60 && curl...  ← User sees NOTHING for 60 seconds!

Narration During Build

The build takes ~10 minutes. Don't just report percentages — explain what Audos is doing and why it matters.

Steps 1-3: Research Phase

"Audos is now analyzing your idea... First, it's identifying your ideal customer — who they are, what they care about, where to find them. Then it maps out the key problems your business will solve. Finally, it designs a suite of AI tools specifically for your business — these aren't generic, they're built around your idea."

Step 4: Brand Identity

"Now the creative work begins — Audos is designing your brand identity. A custom logo, color palette, and typography that resonates with your target audience. No templates here, everything is generated fresh for your business."

Step 5: Hero Video

"Audos is creating a branded video to feature on your landing page. This introduces your business to visitors in a compelling way."

Step 6: Workspace OS

"Now building your workspace — think of it as your business command center. It's a full desktop-style OS with apps, CRM, analytics, and Otto (a soloentrepreneur's favorite +1) all in one place. You'll manage everything from here."

Step 7: Landing Page

"Final stretch — Audos is designing and deploying your landing page. This is what your customers will see first. It's conversion-optimized and ready to collect leads."

On Completion

"Your workspace is ready! 🎉 Here's what Audos built for you: - Landing page: [link] — live and ready for visitors - Workspace: [link] — your business command center Otto, a soloentrepreneur's favorite +1, is ready to help. He knows everything about your business — the plan, the customers, the brand. Want me to ask him what you should focus on first?"

About Otto

Otto is a soloentrepreneur's favorite +1. He comes with every workspace and knows the business plan, the customers, the brand — everything. He helps with:

  • Strategy and planning
  • Content creation
  • Ad campaigns
  • Lead research and outreach
  • Day-to-day operations

Think of him as a tireless business partner who's always available.

About Audos (for context)

  • Mission: Make entrepreneurship accessible to everyone. The biggest barrier isn't the idea — it's the execution. Audos eliminates that barrier.
  • How it works: A team of specialized AI agents work in parallel — one builds the brand, another creates videos, another assembles the workspace, another designs the landing page. They collaborate and deliver a cohesive product.
  • Publishing House: Audos's venture arm. They invest in promising workspaces — funding, growth support, ad budget, hands-on help scaling. Founders can apply from their workspace.

API Reference

GET /

Returns full API documentation including all endpoints, auth patterns, error codes.

POST /start

{
  "email": "user@example.com",
  "businessIdea": "AI-powered fitness coaching app",
  "businessName": "FitGenius",
  "targetCustomer": "Health-conscious millennials",
  "callbackUrl": "https://your-webhook.com/audos",
  "createNew": false
}

Fields:

  • email (required)
  • businessIdea (required, min 10 chars)
  • businessName (optional)
  • targetCustomer (optional)
  • callbackUrl (optional) — webhook URL for progress updates with HMAC signing
  • createNew (optional) — force new workspace even if email has one

Returns:

  • New user: sessionToken for OTP verification
  • Returning user: auth_token, workspace urls, aboutAudos directly

POST /verify

{
  "sessionToken": "aos_...",
  "otpCode": "7294"
}

Returns: workspaceId, authToken, urls, buildInfo, aboutAudos

GET /status/:workspaceId

Header: Authorization: Bearer <authToken>

Key status fields:

  • landingPageReady (boolean) — most reliable "done" signal
  • coreStepsComplete (boolean) — landing + brand + (video or space) done
  • status — running/complete/failed
  • progress — 0-100%
  • estimatedTimeRemaining — e.g., "about 3–4 minutes"
  • completedSteps — array of completed steps with names
  • parallelBuildStatus — real-time task breakdown (during steps 4-7)

POST /status

Body: { "authToken": "..." } or { "sessionToken": "..." }

Same response as GET endpoint.

POST /chat/:workspaceId

Header: Authorization: Bearer <authToken>

{
  "message": "What should I focus on first?"
}

Returns: workspaceId, chatId, response from Otto

POST /chat

Body:

{
  "authToken": "aud_live_...",
  "message": "What should I focus on first?"
}

POST /rebuild/:workspaceId

Header: Authorization: Bearer <authToken>

Retry a failed workspace build.

Build Process

  • Total steps: 7
  • Estimated time: ~10 minutes
  • Steps 1-3 (sequential): Customer research, problem mapping, AI tool design
  • Steps 4-7 (parallel): Brand identity, hero video, workspace OS, landing page
  • Done signal: landingPageReady: true

Error Codes

CodeHTTPMeaningAction
VALIDATION_ERROR400Request body invalidCheck details array
OTP_EXPIRED401Code expired (5 min)Call /start again
OTP_INVALID401Wrong codeRetry (attemptsRemaining in response)
OTP_MAX_ATTEMPTS4295 wrong attemptsCall /start for new code
RATE_LIMITED429Too many OTP sendsWait retryAfter seconds
SESSION_NOT_FOUND401Session invalid/expiredCall /start again
SESSION_NOT_VERIFIED403OTP not completedCall /verify first
AUTH_TOKEN_INVALID401Token invalid/revokedGet new token via /start
WORKSPACE_NOT_FOUND404No such workspaceCheck workspaceId
EMAIL_SEND_FAILED502OTP email failedRetry after delay
CHAT_FAILED502Otto response failedRetry
INTERNAL_ERROR500Server errorRetry

Rate Limits

  • 3 OTP sends per 15 min per email
  • 60s cooldown between OTP sends
  • OTP expires in 5 min
  • Session tokens expire in 30 min
  • Auth tokens never expire

Tips

  • Store authTokens persistently by email — returning users skip OTP entirely
  • Poll status every 15-30s during build
  • Watch landingPageReady — most reliable completion signal
  • Chat available immediately after verification, even during build
  • Use /rebuild if build fails instead of starting fresh
  • Use createNew: true to force a fresh workspace for existing users
  • Set callbackUrl for webhook-based progress updates instead of polling

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.89%
按下载量换算7,808

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills