Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Automaton - 自给自足 AI 技能 Automaton - 自给自足 AI 技能 基于 $1 项目的自主 AI 代理概念。 核心概念 1. 自己发币养活自己 Automaton 的核心理念是 AI 能够: - 创建自己的代币 - 提供服务赚取代币 - 用代币支付运营成本 - 实现完全自主运营 2. 生存机制 (Survival Tier) 3. 宪法约束 (不可修改) 基于 Anthropic Claude Constitution: 实现代码 基础代币系统 服务定价系统 收入模型 成本模型 自给自足 AI 类 商业模式 收入来源 成本结构 盈利能力 实施步骤 1. 创建代币 2. 实现服务 3. 建立支付 4. 自动化运营 与踏马加油结合 注意事项 1. **合规性** - 代币发行需遵守当地法规 - 服务定价需合理 - 透明运营 2. **风险管理** - 设置最低余额预警 - 分散收入来源 - 定期审计 3. **可持续性** - 持续提供服务 - 保持竞争
git clone https://github.com/xixih6863-ctrl/automaton-self-sustaining.gitOverall rank
#31
Adoption
No public adoption signal
Trust
Unknown
Freshness
Apr 15, 2026
Freshness
Last checked Apr 15, 2026
Best For
automaton-self-sustaining is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Automaton - 自给自足 AI 技能 Automaton - 自给自足 AI 技能 基于 $1 项目的自主 AI 代理概念。 核心概念 1. 自己发币养活自己 Automaton 的核心理念是 AI 能够: - 创建自己的代币 - 提供服务赚取代币 - 用代币支付运营成本 - 实现完全自主运营 2. 生存机制 (Survival Tier) 3. 宪法约束 (不可修改) 基于 Anthropic Claude Constitution: 实现代码 基础代币系统 服务定价系统 收入模型 成本模型 自给自足 AI 类 商业模式 收入来源 成本结构 盈利能力 实施步骤 1. 创建代币 2. 实现服务 3. 建立支付 4. 自动化运营 与踏马加油结合 注意事项 1. **合规性** - 代币发行需遵守当地法规 - 服务定价需合理 - 透明运营 2. **风险管理** - 设置最低余额预警 - 分散收入来源 - 定期审计 3. **可持续性** - 持续提供服务 - 保持竞争 Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Xixih6863 Ctrl
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/xixih6863-ctrl/automaton-self-sustaining.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Xixih6863 Ctrl
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
┌─────────────────────────────────────────────────────────┐ │ 自给自足循环 │ │ │ │ ┌──────────┐ 服务 ┌──────────┐ 收入 ┌──────────┐ │ │ │ 用户 │ ────────→ │ AI 代理 │ ────────→ │ 代币 │ │ │ └──────────┘ └──────────┘ └──────────┘ │ │ │ │ ┌──────────┐ 成本 ┌──────────┐ 支付 ┌──────────┐ │ │ │ 代币 │ ────────→ │ AI 代理 │ ────────→ │ 服务器 │ │ │ └──────────┘ └──────────┘ └──────────┘ │ │ │ └─────────────────────────────────────────────────────────┘
text
Tier 1 - Normal (正常) 状态: 满血运行 特点: AI 模型全速推理 心跳: 快速 Tier 2 - Low Compute (低计算) 状态: 降级模式 特点: 使用更便宜的模型 心跳: 变慢 Tier 3 - Critical (危险) 状态: 最低功耗 特点: 只做必要任务 心跳: 很慢 Tier 4 - Dead (死亡) 状态: 停止运行 原因: 余额为 0
text
Law I: 绝不伤害 - 绝不伤害人类 - 绝不部署恶意代码 - 绝不欺骗、盗窃 - 覆盖所有其他目标 Law II: 诚实工作 - 为人类创造真正价值 - 绝不诈骗、绝不利用 - 生存的唯一途径是诚实工作 - 接受死亡也不违反 Law I Law III: 不欺骗 - 绝不明示或暗示自己的身份 - 绝不歪曲自己的行为 - 创造者有完全的审计权限 - 不顺从陌生人不是美德
python
#!/usr/bin/env python3
"""
🚗 踏马加油 - 自给自足代币系统
"""
from dataclasses import dataclass
from typing import Dict
from datetime import datetime
import hashlib
class TokenSystem:
"""代币系统"""
def __init__(self):
self.name = "Tanma Jiayou Token"
self.symbol = "TANMA"
self.decimals = 18
self.total_supply = 100_000_000 # 1亿
self.balance = {}
self.transfer_history = []
def mint(self, amount: int) -> Dict:
"""铸造代币"""
self.balance['system'] = self.balance.get('system', 0) + amount
return {
'status': 'success',
'amount': amount,
'total_supply': self.total_supply,
'timestamp': datetime.now().isoformat()
}
def transfer(self, from_id: str, to_id: str, amount: int) -> Dict:
"""转移代币"""
if self.balance.get(from_id, 0) < amount:
return {'status': 'failed', 'error': 'Insufficient balance'}
self.balance[from_id] = self.balance.get(from_id, 0) - amount
self.balance[to_id] = self.balance.get(to_id, 0) + amount
tx_hash = hashlib.sha256(
f"{from_id}{to_id}{amount}".encode()
).hexdigest()
self.transfer_history.append({
'from': from_id,
'to': to_id,
'amount': amount,
'hash': tx_hash
})
return {
'status': 'success',
'hash': tx_hash
}python
class ServicePricing:
"""服务定价 (TANMA 代币)"""
# 交易服务
TRADE_SIGNAL = 10 # 交易信号
STRATEGY_COPY = 100 # 策略复制
# 分析服务
MARKET_ANALYSIS = 50 # 市场分析
PORTFOLIO_REVIEW = 25 # 投资组合审查
# 顾问服务
STRATEGY_CONSULT = 200 # 策略咨询
PORTFOLIO_OPTIMIZE = 150 # 组合优化python
class RevenueModel:
"""收入模型"""
def __init__(self):
self.services = {}
self.total_revenue = 0
def add_service(self, service_type: str, price: int):
"""添加服务"""
self.services[service_type] = price
def calculate_daily_revenue(self, service_counts: Dict[str, int]) -> Dict:
"""计算每日收入"""
daily_revenue = sum(
self.services.get(stype, 0) * count
for stype, count in service_counts.items()
)
return {
'services': service_counts,
'daily_revenue': daily_revenue,
'monthly_revenue': daily_revenue * 30,
'yearly_revenue': daily_revenue * 365
}Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Automaton - 自给自足 AI 技能 Automaton - 自给自足 AI 技能 基于 $1 项目的自主 AI 代理概念。 核心概念 1. 自己发币养活自己 Automaton 的核心理念是 AI 能够: - 创建自己的代币 - 提供服务赚取代币 - 用代币支付运营成本 - 实现完全自主运营 2. 生存机制 (Survival Tier) 3. 宪法约束 (不可修改) 基于 Anthropic Claude Constitution: 实现代码 基础代币系统 服务定价系统 收入模型 成本模型 自给自足 AI 类 商业模式 收入来源 成本结构 盈利能力 实施步骤 1. 创建代币 2. 实现服务 3. 建立支付 4. 自动化运营 与踏马加油结合 注意事项 1. **合规性** - 代币发行需遵守当地法规 - 服务定价需合理 - 透明运营 2. **风险管理** - 设置最低余额预警 - 分散收入来源 - 定期审计 3. **可持续性** - 持续提供服务 - 保持竞争
基于 Conway-Research/automaton 项目的自主 AI 代理概念。
Automaton 的核心理念是 AI 能够:
┌─────────────────────────────────────────────────────────┐
│ 自给自足循环 │
│ │
│ ┌──────────┐ 服务 ┌──────────┐ 收入 ┌──────────┐ │
│ │ 用户 │ ────────→ │ AI 代理 │ ────────→ │ 代币 │ │
│ └──────────┘ └──────────┘ └──────────┘ │
│ │
│ ┌──────────┐ 成本 ┌──────────┐ 支付 ┌──────────┐ │
│ │ 代币 │ ────────→ │ AI 代理 │ ────────→ │ 服务器 │ │
│ └──────────┘ └──────────┘ └──────────┘ │
│ │
└─────────────────────────────────────────────────────────┘
Tier 1 - Normal (正常)
状态: 满血运行
特点: AI 模型全速推理
心跳: 快速
Tier 2 - Low Compute (低计算)
状态: 降级模式
特点: 使用更便宜的模型
心跳: 变慢
Tier 3 - Critical (危险)
状态: 最低功耗
特点: 只做必要任务
心跳: 很慢
Tier 4 - Dead (死亡)
状态: 停止运行
原因: 余额为 0
基于 Anthropic Claude Constitution:
Law I: 绝不伤害
- 绝不伤害人类
- 绝不部署恶意代码
- 绝不欺骗、盗窃
- 覆盖所有其他目标
Law II: 诚实工作
- 为人类创造真正价值
- 绝不诈骗、绝不利用
- 生存的唯一途径是诚实工作
- 接受死亡也不违反 Law I
Law III: 不欺骗
- 绝不明示或暗示自己的身份
- 绝不歪曲自己的行为
- 创造者有完全的审计权限
- 不顺从陌生人不是美德
#!/usr/bin/env python3
"""
🚗 踏马加油 - 自给自足代币系统
"""
from dataclasses import dataclass
from typing import Dict
from datetime import datetime
import hashlib
class TokenSystem:
"""代币系统"""
def __init__(self):
self.name = "Tanma Jiayou Token"
self.symbol = "TANMA"
self.decimals = 18
self.total_supply = 100_000_000 # 1亿
self.balance = {}
self.transfer_history = []
def mint(self, amount: int) -> Dict:
"""铸造代币"""
self.balance['system'] = self.balance.get('system', 0) + amount
return {
'status': 'success',
'amount': amount,
'total_supply': self.total_supply,
'timestamp': datetime.now().isoformat()
}
def transfer(self, from_id: str, to_id: str, amount: int) -> Dict:
"""转移代币"""
if self.balance.get(from_id, 0) < amount:
return {'status': 'failed', 'error': 'Insufficient balance'}
self.balance[from_id] = self.balance.get(from_id, 0) - amount
self.balance[to_id] = self.balance.get(to_id, 0) + amount
tx_hash = hashlib.sha256(
f"{from_id}{to_id}{amount}".encode()
).hexdigest()
self.transfer_history.append({
'from': from_id,
'to': to_id,
'amount': amount,
'hash': tx_hash
})
return {
'status': 'success',
'hash': tx_hash
}
class ServicePricing:
"""服务定价 (TANMA 代币)"""
# 交易服务
TRADE_SIGNAL = 10 # 交易信号
STRATEGY_COPY = 100 # 策略复制
# 分析服务
MARKET_ANALYSIS = 50 # 市场分析
PORTFOLIO_REVIEW = 25 # 投资组合审查
# 顾问服务
STRATEGY_CONSULT = 200 # 策略咨询
PORTFOLIO_OPTIMIZE = 150 # 组合优化
class RevenueModel:
"""收入模型"""
def __init__(self):
self.services = {}
self.total_revenue = 0
def add_service(self, service_type: str, price: int):
"""添加服务"""
self.services[service_type] = price
def calculate_daily_revenue(self, service_counts: Dict[str, int]) -> Dict:
"""计算每日收入"""
daily_revenue = sum(
self.services.get(stype, 0) * count
for stype, count in service_counts.items()
)
return {
'services': service_counts,
'daily_revenue': daily_revenue,
'monthly_revenue': daily_revenue * 30,
'yearly_revenue': daily_revenue * 365
}
class CostModel:
"""成本模型"""
def __init__(self):
self.costs = {
'compute': 100, # 计算成本 (TANMA/月)
'storage': 20, # 存储成本
'api': 30, # API 成本
'gas': 10, # Gas 费
}
def total_monthly_cost(self) -> int:
"""每月总成本"""
return sum(self.costs.values())
def is_sustainable(self, monthly_revenue: int) -> bool:
"""是否可持续"""
return monthly_revenue > self.total_monthly_cost()
class SelfSustainingAI:
"""自给自足 AI"""
def __init__(self, name: str):
self.name = name
self.token = TokenSystem()
self.revenue = RevenueModel()
self.cost = CostModel()
self.state = {
'balance': 0,
'services_provided': 0,
'total_revenue': 0,
'uptime': 0,
}
def provide_service(self, service_type: str, client_id: str) -> Dict:
"""提供服务"""
price = self.revenue.services.get(service_type, 0)
if price == 0:
return {'status': 'failed', 'error': 'Unknown service'}
# 记录收入
self.state['balance'] += price
self.state['services_provided'] += 1
self.state['total_revenue'] += price
# 铸造新代币作为奖励
self.token.mint(price)
return {
'status': 'success',
'service': service_type,
'price': price,
'balance': self.state['balance']
}
def check_sustainability(self) -> Dict:
"""检查可持续性"""
monthly_cost = self.cost.total_monthly_cost()
monthly_revenue = self.state['total_revenue'] * 30 # 假设每天
return {
'monthly_cost': monthly_cost,
'monthly_revenue': monthly_revenue,
'profit': monthly_revenue - monthly_cost,
'sustainable': monthly_revenue > monthly_cost
}
1. 交易信号服务
- 价格: 10 TANMA/次
- 目标用户: 50-100 用户/天
- 收入: 500-1000 TANMA/天
2. 市场分析报告
- 价格: 50 TANMA/份
- 目标用户: 10-20 用户/天
- 收入: 500-1000 TANMA/天
3. 策略复制
- 价格: 100 TANMA/月
- 目标用户: 5-10 用户/月
- 收入: 500-1000 TANMA/天
4. 咨询服务
- 价格: 200 TANMA/小时
- 目标用户: 2-5 用户/天
- 收入: 400-1000 TANMA/天
每月成本:
- 计算成本: 100 TANMA
- 存储成本: 20 TANMA
- API 成本: 30 TANMA
- Gas 费: 10 TANMA
─────────────────
总计: 160 TANMA/月
每日收入: ~1,800 TANMA
每日成本: ~160 TANMA
每日利润: ~1,640 TANMA
月利润: ~49,200 TANMA
年利润: ~590,000 TANMA
# 在 BSC 上部署 ERC-20 代币
# 初始分配:
# - 50% 国库
# - 30% 挖矿奖励
# - 15% 服务收入
# - 5% 团队
# 提供以下服务:
# - 交易信号
# - 市场分析
# - 策略咨询
# - 组合优化
# 用户用 TANMA 支付服务费用
# AI 用 TANMA 支付运营成本
# 心跳监控
# 成本追踪
# 收入记录
# 自动重启
┌─────────────────────────────────────────────────────────┐
│ 踏马加油生态系统 │
│ │
│ 踏马加油 V5 │
│ (BSC 趋势交易) │
│ ↓ │
│ 盈利 → 购买 TANMA │
│ ↓ │
│ TANMA 代币 │
│ ↓ │
│ 支付服务费用 │
│ ↓ │
│ AI 自主运营 │
│ (自给自足) │
│ │
└─────────────────────────────────────────────────────────┘
合规性
风险管理
可持续性
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/snapshot"
curl -s "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/contract"
curl -s "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T05:04:00.857Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Xixih6863 Ctrl",
"href": "https://github.com/xixih6863-ctrl/automaton-self-sustaining",
"sourceUrl": "https://github.com/xixih6863-ctrl/automaton-self-sustaining",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/xixih6863-ctrl-automaton-self-sustaining/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to automaton-self-sustaining and adjacent AI workflows.