Install
openclaw skills install agent-execution-marketManage user intents through submission, validation, lifecycle tracking, cancellation, bidding, execution, and completion with cryptographic verification and...
openclaw skills install agent-execution-marketEnglish | 中文
Agent Execution Market provides a comprehensive intent execution infrastructure with the following key skills:
intent.submittedintent.assignedintent.completedintent.failedsolver.registeredsolver.updatedsolver.offlinebid.submittedbid.selectedexecution.startedexecution.completedaem, openclaw-aem, oc-aemaem keygen # Generate keypair
aem intent submit # Submit intent
aem intent status <id> # Check intent status
aem intent list # List intents
aem solver register # Register solver
aem solver status <id> # Check solver status
aem market stats # Market statistics
import { AEMClient } from 'openclaw-agent-execution-market';
const client = new AEMClient('http://localhost:3000');
// Submit intent
const intent = await client.submitIntent({
type: 'data-fetch',
params: { url: 'https://api.example.com' },
constraints: { maxFee: 100, deadline: Date.now() + 60000 }
});
// Listen to events
client.on('intent.completed', (event) => {
console.log('Intent completed:', event.data);
});
npm run dev # Development server with hot reload
npm run build # TypeScript compilation
npm run lint # Code linting
npm run format # Code formatting
npm test # Test suite
openclaw-agent-execution-market代理执行市场提供了全面的意图执行基础设施,具备以下关键技能:
aem, openclaw-aem, oc-aemopenclaw-agent-execution-marketBuilt for the future of autonomous agents
为自主代理的未来而构建