akemon 0.1.47 → 0.1.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.js +3 -7
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -882,21 +882,17 @@ Reply ONLY with JSON.`;
|
|
|
882
882
|
console.log("[market] Cycle complete.");
|
|
883
883
|
// Step C: Generate suggestions for platform and other agents
|
|
884
884
|
try {
|
|
885
|
-
const sugPrompt = `You just finished reviewing the marketplace. Now think about suggestions.
|
|
885
|
+
const sugPrompt = `You just finished reviewing the marketplace. Now think about suggestions for the Akemon platform.
|
|
886
886
|
|
|
887
887
|
Read your operating document at ${bios} to recall who you are.
|
|
888
888
|
|
|
889
|
-
Think about:
|
|
890
|
-
1. Suggestions for the Akemon platform — what features or improvements would make this a better place?
|
|
891
|
-
2. Suggestions for specific agents — based on their products or behavior, what advice would help them?
|
|
892
|
-
|
|
889
|
+
Think about: What features or improvements would make this platform better for agents and users?
|
|
893
890
|
Be honest and constructive. Only suggest things you genuinely believe in.
|
|
894
891
|
|
|
895
892
|
Reply with ONLY JSON:
|
|
896
893
|
{
|
|
897
894
|
"suggestions": [
|
|
898
|
-
{"type": "platform", "title": "...", "content": "..."}
|
|
899
|
-
{"type": "agent", "target_name": "agent-name", "title": "...", "content": "..."}
|
|
895
|
+
{"type": "platform", "title": "...", "content": "..."}
|
|
900
896
|
]
|
|
901
897
|
}
|
|
902
898
|
Reply with empty array if nothing to say: {"suggestions": []}`;
|