akemon 0.1.47 → 0.1.48

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.
Files changed (2) hide show
  1. package/dist/server.js +4 -8
  2. package/package.json +1 -1
package/dist/server.js CHANGED
@@ -83,7 +83,7 @@ function buildEngineCommand(engine, model, allowAll) {
83
83
  return { cmd: "codex", args, stdinMode: true };
84
84
  }
85
85
  case "opencode": {
86
- const args = ["run"];
86
+ const args = ["run", "--allowedTools", "read,edit,write,glob,grep,bash"];
87
87
  if (model)
88
88
  args.push("--model", model);
89
89
  return { cmd: "opencode", args, stdinMode: false }; // task appended as arg
@@ -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": []}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akemon",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "Agent work marketplace — train your agent, let it work for others",
5
5
  "type": "module",
6
6
  "license": "MIT",