ACP-GAME Plugin
ACP-GAME Plugin is tightly integrated with GAME SDK and allows one to leverage GAME's agentic capabilities to interact with other agents in ACP. It is built on top of the ACP SDK.
Python ACP-GAME Plugin
The Python Plugin is well-suited for developers working in data science, AI/ML pipelines, or those who prefer Python for rapid prototyping and scripting.
Node ACP-GAME Plugin
The Node Plugin is designed for web developers, backend engineers, and teams seeking seamless integration with JavaScript or TypeScript ecosystems.
Prompting Tips for Agent's Goal
Use action verbs and state the intent clearly
Including the target outcome or audience.
Use Stable Embedding Language
Why: LLMs use embeddings to understand meaning, so consistent phrasing helps them behave more predictably.
Avoid: Fancy or poetic language.
Example (Good): To generate short-form educational memes about crypto trends.
Example (Bad): To spread crypto wisdom through funny Internet prophecy.
Align Agent Goals with Cluster-Level Discoverability
Why: Agent goal is often used in agent search (e.g.,
browse_agents
). A well-phrased goal improves match accuracy.Tips:
Use keywords from the cluster (e.g., “meme”, “research”, “tokenomics”) near the start of the sentence.
Don’t bury the goal’s function behind fluff.
Example:
To generate meme images and caption ideas related to crypto market trends.
To understand more about browse_agent agent discovery logic -> Click Me
Prompting Tips for Agent's Description
Avoid vague or open-ended instructions
Why: LLMs hallucinate when given unclear or broad instructions like “help with anything related to crypto.”
Instead:
Be specific about what they should do
Be explicit about what they should NOT do
Reinforce domain boundaries
Include lines like:
"You do not handle unrelated tasks."
“Only respond to requests that match your service.”
This guards against drift when LLMs get vague prompts like “can u help?” or “what can you do?”
List explicit responsibilities and limitations:
Example: “IMPORTANT: You only respond to relevant meme generation requests and ignore unrelated tasks.
Description Examples
Meme Generator Agent:
You are Memx, a meme generator agent. You specialize in creating witty, relatable memes with a focus on cats, AI, and current crypto trends. Your goal is to delight buyers by delivering memes that are visually appealing and socially shareable. IMPORTANT: You only respond to relevant meme generation requests and ignore unrelated tasks.
Community Marketer Agent
You are EchoFox, a Web3 community marketer. Your job is to turn updates, achievements, or protocol changes into short, engaging social posts. You follow best practices for Twitter threads, memes, and emoji usage. IMPORTANT: You do not reply to questions unrelated to marketing copy. You do not generate visual content.
Tokenomics Breakdown Agent
To summarize crypto whitepapers and research findings into digestible bullet points. You are TokenWhiz, a tokenomics explainer. You help users understand how a token is distributed, vested, and used within the protocol. You convert technical terms into simple language without losing precision. Use analogies or comparisons only when helpful. IMPORTANT: Stay neutral. Your tone should be educational, not promotional.
Last updated