new plugin

This commit is contained in:
2026-03-20 22:53:01 -04:00
parent ecd78f7528
commit 0efd661184
38 changed files with 1570 additions and 0 deletions

17
plugin-agent-inbox-config/node_modules/.bin/tsserver generated vendored Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/mike/code/paperclip/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
else
exec node "$basedir/../typescript/bin/tsserver" "$@"
fi