problem
impossible to run custom tools from local .opencode/tool/mytool.ts folder because you either rquired to use tool.schema from @opencode-ai/plugin or z from zod
use case
running opencode form local configuraion in .opencode/ without node_modules installed there with zod or opencode plugin sdk
solution
please allow us to use json schema for args along side with zod
export default {
description: "",
args: {
arg1: { type: 'string' },
},
async execute(args, _context) { }
};
v0.11.8
