opencode-manifold 0.5.21 → 0.5.22

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/index.js +8 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -626,7 +626,14 @@ var ManifoldPlugin = async (ctx) => {
626
626
  execute_task: executeTaskTool(client, directory)
627
627
  },
628
628
  "command.execute.before": async (input, output) => {
629
- if (input.command === "manifold-init") {
629
+ await client.app.log({
630
+ body: {
631
+ service: "opencode-manifold",
632
+ level: "info",
633
+ message: `Command intercepted: ${input.command}`
634
+ }
635
+ });
636
+ if (input.command === "manifold-init" || input.command === "/manifold-init") {
630
637
  const initialized = await initProject(directory, client);
631
638
  if (initialized.length > 0) {
632
639
  output.parts = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-manifold",
3
- "version": "0.5.21",
3
+ "version": "0.5.22",
4
4
  "description": "Multi-agent development system for opencode with persistent knowledge",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",