@vicoa/opencode 0.1.0
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.
- package/LICENSE +201 -0
- package/README.md +104 -0
- package/dist/commands.d.ts +24 -0
- package/dist/commands.js +228 -0
- package/dist/credentials.d.ts +27 -0
- package/dist/credentials.js +56 -0
- package/dist/format-utils.d.ts +10 -0
- package/dist/format-utils.js +335 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +538 -0
- package/dist/message-poller.d.ts +16 -0
- package/dist/message-poller.js +45 -0
- package/dist/plugin/commands.d.ts +24 -0
- package/dist/plugin/commands.js +228 -0
- package/dist/plugin/control.d.ts +15 -0
- package/dist/plugin/control.js +140 -0
- package/dist/plugin/credentials.d.ts +27 -0
- package/dist/plugin/credentials.js +56 -0
- package/dist/plugin/file-sync.d.ts +5 -0
- package/dist/plugin/file-sync.js +187 -0
- package/dist/plugin/format-utils.d.ts +10 -0
- package/dist/plugin/format-utils.js +339 -0
- package/dist/plugin/message-poller.d.ts +16 -0
- package/dist/plugin/message-poller.js +45 -0
- package/dist/plugin/path-utils.d.ts +45 -0
- package/dist/plugin/path-utils.js +62 -0
- package/dist/plugin/permission.d.ts +30 -0
- package/dist/plugin/permission.js +125 -0
- package/dist/plugin/utils.d.ts +7 -0
- package/dist/plugin/utils.js +15 -0
- package/dist/plugin/vicoa-client.d.ts +67 -0
- package/dist/plugin/vicoa-client.js +259 -0
- package/dist/vicoa-client.d.ts +67 -0
- package/dist/vicoa-client.js +259 -0
- package/package.json +51 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# OpenCode Plugin for Vicoa
|
|
2
|
+
|
|
3
|
+
A plugin for OpenCode that enables you to ship faster with OpenCode on your phone!
|
|
4
|
+
|
|
5
|
+
OpenCode plugin for [Vicoa](https://vicoa.ai) to vibe code anywhere.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **Push Notifications** - Get notified when OpenCode needs approval or finishes tasks
|
|
10
|
+
- **Real-time Monitoring** - See all opencode progress in your phone
|
|
11
|
+
- **Bidirectional Messaging** - Send messages to OpenCode from your phone
|
|
12
|
+
- **Permission Approval** - Approve permissions on the go
|
|
13
|
+
- **File Fuzzy Search** - Reference project files quickly on your phone
|
|
14
|
+
- **Command Execution** - Execute OpenCode commands from your phone
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
This plugin works with Vicoa CLI, web, and mobile app.
|
|
19
|
+
|
|
20
|
+
## Installation vis Vicoa (Recommended)
|
|
21
|
+
|
|
22
|
+
You can install `vicoa` CLI with:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install vicoa
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Then, run the following command to install the plugin and link Vicoa with OpenCode:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
vicoa opencode
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
After authentication via the web portal, you are set to use OpenCode anywhere you go.
|
|
35
|
+
|
|
36
|
+
You can reference [Vicoa Setup Guide](https://vicoa.ai/docs/getting-started) for more details.
|
|
37
|
+
|
|
38
|
+
## Manual Installation
|
|
39
|
+
|
|
40
|
+
Add the plugin to OpenCode config (`~/.config/opencode/config.json`):
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{
|
|
44
|
+
"$schema": "https://opencode.ai/config.json",
|
|
45
|
+
"plugins": ["opencode-vicoa"]
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Then, you'll still need to install Vicoa CLI and authenticate with it to set the Vicoa API key.
|
|
50
|
+
|
|
51
|
+
You can also get the API key manually from the Vicoa dashboard, then set it with:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
export VICOA_API_KEY="your-vicoa-api-key"
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### For Development
|
|
59
|
+
|
|
60
|
+
1. Clone the repository
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
git clone https://github.com/vicoa-ai/opencode-vicoa.git
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
2. Install and build the package:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm install
|
|
70
|
+
npm run build
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
3. Add the local plugin version to OpenCode config:
|
|
74
|
+
|
|
75
|
+
```json
|
|
76
|
+
{
|
|
77
|
+
"$schema": "https://opencode.ai/config.json",
|
|
78
|
+
"plugins": ["file://<path/to/opencode-vicoa>"]
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Usage
|
|
83
|
+
|
|
84
|
+
You can either use the Vicoa CLI to start OpenCode, or run OpenCode directly.
|
|
85
|
+
|
|
86
|
+
1. After initial setup, you can run OpenCode directly and it'll sync with Vicoa automatically.
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
opencode
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
2. You can also use the Vicoa CLI to start OpenCode:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
vicoa opencode
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
It additional prepares files for fuzzy search on Vicoa mobile and web apps.
|
|
99
|
+
|
|
100
|
+
You can also upgrade the plugin with
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
vicoa opencode --upgrade
|
|
104
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { VicoaClient } from './vicoa-client.js';
|
|
2
|
+
export declare const OPENCODE_SLASH_AGENT_TYPE = "opencode";
|
|
3
|
+
export declare const OPENCODE_SLASH_COMMAND_ACTIONS: Record<string, string>;
|
|
4
|
+
export declare const OPENCODE_EXECUTE_COMMAND_KEYS: Record<string, string>;
|
|
5
|
+
/**
|
|
6
|
+
* Execute a TUI command via the OpenCode client.
|
|
7
|
+
*/
|
|
8
|
+
export declare function executeTuiCommand(client: any, command: string): Promise<void>;
|
|
9
|
+
export type OpencodeCommandMap = Record<string, {
|
|
10
|
+
description: string;
|
|
11
|
+
}>;
|
|
12
|
+
export type ParsedSlashCommand = {
|
|
13
|
+
name: string;
|
|
14
|
+
rawName: string;
|
|
15
|
+
arguments: string;
|
|
16
|
+
};
|
|
17
|
+
export declare function parseSlashCommand(input: string): ParsedSlashCommand | null;
|
|
18
|
+
export declare function scanOpencodeCommands(projectDir: string | undefined, homeDir: string): Promise<OpencodeCommandMap>;
|
|
19
|
+
/**
|
|
20
|
+
* Handle slash command execution. Returns true if the command was executed
|
|
21
|
+
* directly (built-in with no arguments), false if it should be submitted as
|
|
22
|
+
* a prompt (built-in with args, custom command, or unknown command).
|
|
23
|
+
*/
|
|
24
|
+
export declare function handleSlashCommand(userMessage: string, client: any, currentSessionId?: string, vicoaClient?: VicoaClient): Promise<boolean>;
|
package/dist/commands.js
ADDED
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import * as fs from 'fs/promises';
|
|
3
|
+
import { log } from './plugin/utils.js';
|
|
4
|
+
export const OPENCODE_SLASH_AGENT_TYPE = 'opencode';
|
|
5
|
+
export const OPENCODE_SLASH_COMMAND_ACTIONS = {
|
|
6
|
+
sessions: 'session.list',
|
|
7
|
+
resume: 'session.list',
|
|
8
|
+
continue: 'session.list',
|
|
9
|
+
new: 'session.new',
|
|
10
|
+
clear: 'session.new',
|
|
11
|
+
models: 'model.list',
|
|
12
|
+
agents: 'agent.list',
|
|
13
|
+
mcps: 'mcp.list',
|
|
14
|
+
connect: 'provider.connect',
|
|
15
|
+
status: 'opencode.status',
|
|
16
|
+
themes: 'theme.switch',
|
|
17
|
+
help: 'help.show',
|
|
18
|
+
exit: 'app.exit',
|
|
19
|
+
quit: 'app.exit',
|
|
20
|
+
q: 'app.exit',
|
|
21
|
+
editor: 'prompt.editor',
|
|
22
|
+
share: 'session.share',
|
|
23
|
+
rename: 'session.rename',
|
|
24
|
+
timeline: 'session.timeline',
|
|
25
|
+
fork: 'session.fork',
|
|
26
|
+
compact: 'session.compact',
|
|
27
|
+
summarize: 'session.compact',
|
|
28
|
+
unshare: 'session.unshare',
|
|
29
|
+
undo: 'session.undo',
|
|
30
|
+
redo: 'session.redo',
|
|
31
|
+
timestamps: 'session.toggle.timestamps',
|
|
32
|
+
'toggle-timestamps': 'session.toggle.timestamps',
|
|
33
|
+
thinking: 'session.toggle.thinking',
|
|
34
|
+
'toggle-thinking': 'session.toggle.thinking',
|
|
35
|
+
copy: 'session.copy',
|
|
36
|
+
export: 'session.export',
|
|
37
|
+
};
|
|
38
|
+
export const OPENCODE_EXECUTE_COMMAND_KEYS = {
|
|
39
|
+
'session.new': 'session_new',
|
|
40
|
+
'session.share': 'session_share',
|
|
41
|
+
'session.interrupt': 'session_interrupt',
|
|
42
|
+
'session.compact': 'session_compact',
|
|
43
|
+
'session.page.up': 'messages_page_up',
|
|
44
|
+
'session.page.down': 'messages_page_down',
|
|
45
|
+
'session.line.up': 'messages_line_up',
|
|
46
|
+
'session.line.down': 'messages_line_down',
|
|
47
|
+
'session.half.page.up': 'messages_half_page_up',
|
|
48
|
+
'session.half.page.down': 'messages_half_page_down',
|
|
49
|
+
'session.first': 'messages_first',
|
|
50
|
+
'session.last': 'messages_last',
|
|
51
|
+
'agent.cycle': 'agent_cycle',
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Execute a TUI command via the OpenCode client.
|
|
55
|
+
*/
|
|
56
|
+
export async function executeTuiCommand(client, command) {
|
|
57
|
+
const executeKey = OPENCODE_EXECUTE_COMMAND_KEYS[command];
|
|
58
|
+
if (executeKey) {
|
|
59
|
+
await client.tui.executeCommand({ body: { command: executeKey } });
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
await client.tui.publish({
|
|
63
|
+
body: {
|
|
64
|
+
type: 'tui.command.execute',
|
|
65
|
+
properties: { command },
|
|
66
|
+
},
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
export function parseSlashCommand(input) {
|
|
70
|
+
const trimmed = input.trim();
|
|
71
|
+
if (!trimmed.startsWith('/')) {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
const body = trimmed.slice(1).trim();
|
|
75
|
+
if (!body) {
|
|
76
|
+
return null;
|
|
77
|
+
}
|
|
78
|
+
const [rawName, ...rest] = body.split(/\s+/);
|
|
79
|
+
if (!rawName) {
|
|
80
|
+
return null;
|
|
81
|
+
}
|
|
82
|
+
return {
|
|
83
|
+
rawName,
|
|
84
|
+
name: rawName.toLowerCase(),
|
|
85
|
+
arguments: rest.join(' ').trim(),
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
async function pathExists(target) {
|
|
89
|
+
try {
|
|
90
|
+
await fs.stat(target);
|
|
91
|
+
return true;
|
|
92
|
+
}
|
|
93
|
+
catch {
|
|
94
|
+
return false;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
async function walkMarkdownFiles(root) {
|
|
98
|
+
const results = [];
|
|
99
|
+
if (!(await pathExists(root))) {
|
|
100
|
+
return results;
|
|
101
|
+
}
|
|
102
|
+
const entries = await fs.readdir(root, { withFileTypes: true });
|
|
103
|
+
for (const entry of entries) {
|
|
104
|
+
const fullPath = path.join(root, entry.name);
|
|
105
|
+
if (entry.isDirectory()) {
|
|
106
|
+
results.push(...(await walkMarkdownFiles(fullPath)));
|
|
107
|
+
}
|
|
108
|
+
else if (entry.isFile() && entry.name.toLowerCase().endsWith('.md')) {
|
|
109
|
+
results.push(fullPath);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
return results;
|
|
113
|
+
}
|
|
114
|
+
function getOpencodeCommandRoots(projectDir, homeDir) {
|
|
115
|
+
const roots = new Set();
|
|
116
|
+
if (process.env.OPENCODE_CONFIG_DIR) {
|
|
117
|
+
roots.add(process.env.OPENCODE_CONFIG_DIR);
|
|
118
|
+
}
|
|
119
|
+
if (process.env.XDG_CONFIG_HOME) {
|
|
120
|
+
roots.add(path.join(process.env.XDG_CONFIG_HOME, 'opencode'));
|
|
121
|
+
}
|
|
122
|
+
roots.add(path.join(homeDir, '.config', 'opencode'));
|
|
123
|
+
if (process.platform === 'win32') {
|
|
124
|
+
const appData = process.env.APPDATA || path.join(homeDir, 'AppData', 'Roaming');
|
|
125
|
+
roots.add(path.join(appData, 'opencode'));
|
|
126
|
+
}
|
|
127
|
+
// ~/.opencode fallback (all platforms).
|
|
128
|
+
roots.add(path.join(homeDir, '.opencode'));
|
|
129
|
+
// Per-project override.
|
|
130
|
+
if (projectDir) {
|
|
131
|
+
roots.add(path.join(projectDir, '.opencode'));
|
|
132
|
+
}
|
|
133
|
+
return Array.from(roots);
|
|
134
|
+
}
|
|
135
|
+
function parseCommandDescription(content, fallbackName) {
|
|
136
|
+
const lines = content.split('\n');
|
|
137
|
+
let description = '';
|
|
138
|
+
if (lines.length > 0 && lines[0].trim() === '---') {
|
|
139
|
+
for (let i = 1; i < lines.length; i += 1) {
|
|
140
|
+
const line = lines[i].trim();
|
|
141
|
+
if (line === '---') {
|
|
142
|
+
break;
|
|
143
|
+
}
|
|
144
|
+
const [key, value] = line.split(':', 2).map((item) => item?.trim());
|
|
145
|
+
if (key?.toLowerCase() === 'description' && value) {
|
|
146
|
+
description = value.replace(/^['"]|['"]$/g, '').trim();
|
|
147
|
+
break;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
if (!description) {
|
|
152
|
+
for (const line of lines) {
|
|
153
|
+
const stripped = line.trim();
|
|
154
|
+
if (!stripped) {
|
|
155
|
+
continue;
|
|
156
|
+
}
|
|
157
|
+
description = stripped.startsWith('#') ? stripped.replace(/^#+/, '').trim() : stripped;
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
return description || `Custom command: ${fallbackName}`;
|
|
162
|
+
}
|
|
163
|
+
export async function scanOpencodeCommands(projectDir, homeDir) {
|
|
164
|
+
const commands = {};
|
|
165
|
+
const roots = getOpencodeCommandRoots(projectDir, homeDir);
|
|
166
|
+
for (const root of roots) {
|
|
167
|
+
const commandRoot = path.join(root, 'commands');
|
|
168
|
+
const files = await walkMarkdownFiles(commandRoot);
|
|
169
|
+
for (const filePath of files) {
|
|
170
|
+
const relativePath = path.relative(commandRoot, filePath);
|
|
171
|
+
const normalized = relativePath.split(path.sep).join('/');
|
|
172
|
+
const commandName = normalized.replace(/\.md$/i, '');
|
|
173
|
+
if (!commandName) {
|
|
174
|
+
continue;
|
|
175
|
+
}
|
|
176
|
+
try {
|
|
177
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
178
|
+
const description = parseCommandDescription(content, commandName);
|
|
179
|
+
commands[commandName] = { description };
|
|
180
|
+
}
|
|
181
|
+
catch {
|
|
182
|
+
continue;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
return commands;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Handle slash command execution. Returns true if the command was executed
|
|
190
|
+
* directly (built-in with no arguments), false if it should be submitted as
|
|
191
|
+
* a prompt (built-in with args, custom command, or unknown command).
|
|
192
|
+
*/
|
|
193
|
+
export async function handleSlashCommand(userMessage, client, currentSessionId, vicoaClient) {
|
|
194
|
+
const parsed = parseSlashCommand(userMessage);
|
|
195
|
+
if (!parsed) {
|
|
196
|
+
return false;
|
|
197
|
+
}
|
|
198
|
+
const action = OPENCODE_SLASH_COMMAND_ACTIONS[parsed.name];
|
|
199
|
+
// Built-in command with no arguments — use the direct TUI action shortcut.
|
|
200
|
+
if (action && !parsed.arguments) {
|
|
201
|
+
// Special handling for /share command: call the API directly to get the URL
|
|
202
|
+
if (parsed.name === 'share' && currentSessionId && vicoaClient) {
|
|
203
|
+
try {
|
|
204
|
+
const { data: session } = await client.session.share({
|
|
205
|
+
path: { id: currentSessionId },
|
|
206
|
+
});
|
|
207
|
+
if (session?.share?.url) {
|
|
208
|
+
await vicoaClient.sendMessage(`Share url: ${session.share.url}`);
|
|
209
|
+
log(client, 'info', `[Vicoa] Shared session and sent URL to UI: ${session.share.url}`);
|
|
210
|
+
}
|
|
211
|
+
else {
|
|
212
|
+
log(client, 'warn', '[Vicoa] Session shared but no URL in response');
|
|
213
|
+
}
|
|
214
|
+
return true;
|
|
215
|
+
}
|
|
216
|
+
catch (error) {
|
|
217
|
+
log(client, 'warn', `[Vicoa] Failed to share session: ${error}`);
|
|
218
|
+
// Fall back to TUI command if API call fails
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
await executeTuiCommand(client, action);
|
|
222
|
+
log(client, 'info', `[Vicoa] Executed slash command: /${parsed.rawName}`);
|
|
223
|
+
return true;
|
|
224
|
+
}
|
|
225
|
+
// Built-in with arguments, or a custom command — fall through so the raw
|
|
226
|
+
// slash command text is submitted as a prompt (OpenCode parses args natively).
|
|
227
|
+
return false;
|
|
228
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Credentials loader for Vicoa
|
|
3
|
+
*
|
|
4
|
+
* Reads API key from ~/.vicoa/credentials.json (same as Vicoa CLI)
|
|
5
|
+
*/
|
|
6
|
+
export interface Credentials {
|
|
7
|
+
write_key?: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get path to Vicoa credentials file
|
|
11
|
+
*/
|
|
12
|
+
export declare function getCredentialsPath(): string;
|
|
13
|
+
/**
|
|
14
|
+
* Load Vicoa API key from credentials file
|
|
15
|
+
*
|
|
16
|
+
* Returns the API key from ~/.vicoa/credentials.json if it exists,
|
|
17
|
+
* otherwise returns null.
|
|
18
|
+
*/
|
|
19
|
+
export declare function loadApiKey(): string | null;
|
|
20
|
+
/**
|
|
21
|
+
* Get Vicoa API key from environment or credentials file
|
|
22
|
+
*
|
|
23
|
+
* Priority:
|
|
24
|
+
* 1. VICOA_API_KEY environment variable
|
|
25
|
+
* 2. ~/.vicoa/credentials.json (write_key)
|
|
26
|
+
*/
|
|
27
|
+
export declare function getApiKey(): string | null;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Credentials loader for Vicoa
|
|
3
|
+
*
|
|
4
|
+
* Reads API key from ~/.vicoa/credentials.json (same as Vicoa CLI)
|
|
5
|
+
*/
|
|
6
|
+
import * as fs from 'fs';
|
|
7
|
+
import * as os from 'os';
|
|
8
|
+
import * as path from 'path';
|
|
9
|
+
/**
|
|
10
|
+
* Get path to Vicoa credentials file
|
|
11
|
+
*/
|
|
12
|
+
export function getCredentialsPath() {
|
|
13
|
+
return path.join(os.homedir(), '.vicoa', 'credentials.json');
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Load Vicoa API key from credentials file
|
|
17
|
+
*
|
|
18
|
+
* Returns the API key from ~/.vicoa/credentials.json if it exists,
|
|
19
|
+
* otherwise returns null.
|
|
20
|
+
*/
|
|
21
|
+
export function loadApiKey() {
|
|
22
|
+
const credentialsPath = getCredentialsPath();
|
|
23
|
+
// Check if file exists
|
|
24
|
+
if (!fs.existsSync(credentialsPath)) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
try {
|
|
28
|
+
const data = fs.readFileSync(credentialsPath, 'utf-8');
|
|
29
|
+
const credentials = JSON.parse(data);
|
|
30
|
+
const apiKey = credentials.write_key;
|
|
31
|
+
if (apiKey && typeof apiKey === 'string' && apiKey.trim().length > 0) {
|
|
32
|
+
return apiKey.trim();
|
|
33
|
+
}
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
catch (error) {
|
|
37
|
+
console.error(`[Vicoa] Error reading credentials file: ${error}`);
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Get Vicoa API key from environment or credentials file
|
|
43
|
+
*
|
|
44
|
+
* Priority:
|
|
45
|
+
* 1. VICOA_API_KEY environment variable
|
|
46
|
+
* 2. ~/.vicoa/credentials.json (write_key)
|
|
47
|
+
*/
|
|
48
|
+
export function getApiKey() {
|
|
49
|
+
// Check environment variable first
|
|
50
|
+
const envKey = process.env.VICOA_API_KEY;
|
|
51
|
+
if (envKey && envKey.trim().length > 0) {
|
|
52
|
+
return envKey.trim();
|
|
53
|
+
}
|
|
54
|
+
// Fall back to credentials file
|
|
55
|
+
return loadApiKey();
|
|
56
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FilePart, PatchPart, ReasoningPart, ToolPart } from '@opencode-ai/sdk';
|
|
2
|
+
type ToolInput = Record<string, unknown>;
|
|
3
|
+
export declare function formatToolUsage(toolName: string, inputData: ToolInput): string;
|
|
4
|
+
export declare function formatToolResult(output: string, toolName?: string): string;
|
|
5
|
+
export declare function shouldSuppressToolOutput(toolName: string): boolean;
|
|
6
|
+
export declare function formatToolPart(toolPart: ToolPart): string;
|
|
7
|
+
export declare function formatReasoningPart(part: ReasoningPart): string;
|
|
8
|
+
export declare function formatFilePart(part: FilePart): string;
|
|
9
|
+
export declare function formatPatchPart(part: PatchPart): string;
|
|
10
|
+
export {};
|