summaryrefslogtreecommitdiffhomepage
path: root/packages/plugin/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/plugin/src')
-rw-r--r--packages/plugin/src/example.ts10
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/plugin/src/example.ts b/packages/plugin/src/example.ts
index a13c0fbac..04c48c918 100644
--- a/packages/plugin/src/example.ts
+++ b/packages/plugin/src/example.ts
@@ -1,9 +1,15 @@
import { Plugin } from "./index"
-export const ExamplePlugin: Plugin = async ({ client, $ }) => {
+export const ExamplePlugin: Plugin = async ({
+ client: _client,
+ $: _shell,
+ project: _project,
+ directory: _directory,
+ worktree: _worktree,
+}) => {
return {
permission: {},
- async "chat.params"(input, output) {
+ async "chat.params"(_input, output) {
output.topP = 1
},
}