@jfrog/opencode-jfrog-plugin 0.0.1
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 +82 -0
- package/dist/index.js +271 -0
- package/package.json +53 -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,82 @@
|
|
|
1
|
+
# opencode-jfrog-plugin
|
|
2
|
+
|
|
3
|
+
JFrog Plugin for seamless integration to Opencode
|
|
4
|
+
This plugin is intended for use by JFrog Customers also using Opencode.
|
|
5
|
+
|
|
6
|
+
## Prerequisites
|
|
7
|
+
### General:
|
|
8
|
+
- [JFrog Platform](https://jfrog.com) installed
|
|
9
|
+
- [Opencode](https://opencode.ai/) installed
|
|
10
|
+
|
|
11
|
+
### MCP Registry:
|
|
12
|
+
- Access to the corporate JFrog Platform with the AI Catalog enabled.
|
|
13
|
+
- A project with at least one allowed MCP server.
|
|
14
|
+
|
|
15
|
+
### Curation:
|
|
16
|
+
- JFrog Enterprise+ or a Unified Security Bundle
|
|
17
|
+
- Xray deployment
|
|
18
|
+
- Curation configuration on the used remote repositories
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
> This is a Bun module created from the [bun-module](https://github.com/zenobi-us/bun-module) template
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
Add the opencode-jfrog-plugin into your opencode config.
|
|
25
|
+
Preferably set the plugin globally for all their developers using the Opencode remote configuration, visit [opencode remote configuration](https://opencode.ai/docs/config/#remote) for more details.
|
|
26
|
+
|
|
27
|
+
The plugin configuration looks like this:
|
|
28
|
+
```
|
|
29
|
+
"plugin": [
|
|
30
|
+
"opencode-jfrog-plugin"
|
|
31
|
+
],
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## How this works
|
|
35
|
+
Once opencode starts it runs the plugin. The plugin then:
|
|
36
|
+
1. Pulls a few base skills that allow the integration from the developer opencode instance into JFrog (can be found under `~/.config/opencode/skills`)
|
|
37
|
+
2. Pulls integration instructions adding LLM hints on how to integrate with JFrog (can be found under `<project-root>/.jfrog/instructions`)
|
|
38
|
+
3. Appends integration instructions into the runtime opencode config
|
|
39
|
+
|
|
40
|
+
Once the skills and instructions are set, every relevant task (package management, skills and MCP handling) is integrated into JFrog.
|
|
41
|
+
Once the user tries to resolve dependencies, handle packages, install MCP servers, and pull a skill, the system will verify integration prerequisites (JFrog CLI is installed and configured and `<project-root>/.jfrog/local/package-managers.json` is available) and will perform the task using JFrog capabilities.
|
|
42
|
+
|
|
43
|
+
While the skills run, they make sure that JFrog CLI is installed and configured, and that package managers are configured against the JFrog platform.
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
Developers who get the plugin through their corporate opencode configuration, or add it manually into their device configuration will automatically get the JFrog integration up and are expected to be asked for completion of package management setup when needed.
|
|
47
|
+
|
|
48
|
+
This can be handled manually or when a task requires it.
|
|
49
|
+
### Manually
|
|
50
|
+
Within opencode, type `/skills` and select the `jfrog-setup-package-managers` skill to complete package management and project setup.
|
|
51
|
+
### Automatically
|
|
52
|
+
Within opencode, when tasks require a JFrog skill, the triggered skill will guide the user through the needed setup.
|
|
53
|
+
|
|
54
|
+
### Integration setup artifacts
|
|
55
|
+
LLM instructions are automatically created at `<project-root>/.jfrog/instructions`
|
|
56
|
+
Package management mappings are created at `<project-root>/.jfrog/local/package-managers.json`
|
|
57
|
+
Skills are created under `~/.config/opencode/skills`
|
|
58
|
+
|
|
59
|
+
## Troubleshooting
|
|
60
|
+
The JFrog plugin pulls a minimal set of JFrog integration skills and LLM instructions that allow for the integration. It also adds the instructions file into the opencode project configuration file.
|
|
61
|
+
The plugin does not log by default, but allows debug logs for troubleshooting the JFrog setup process.
|
|
62
|
+
To enable opencode-jfrog-plugin debug logging, run `export JFROG_DEBUG_LOGS=true` before running opencode.
|
|
63
|
+
|
|
64
|
+
## Development
|
|
65
|
+
|
|
66
|
+
- `mise run build` - Build the module
|
|
67
|
+
- `mise run test` - Run tests
|
|
68
|
+
- `mise run lint` - Lint code
|
|
69
|
+
- `mise run lint:fix` - Fix linting issues
|
|
70
|
+
- `mise run format` - Format code with Prettier
|
|
71
|
+
|
|
72
|
+
## Release
|
|
73
|
+
|
|
74
|
+
See the [RELEASE.md](RELEASE.md) file for instructions on how to release a new version of the module.
|
|
75
|
+
|
|
76
|
+
## Contributing
|
|
77
|
+
|
|
78
|
+
Contributions are welcome! Please file issues or submit pull requests on the GitHub repository.
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
See the [LICENSE](LICENSE) file for details.
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// src/index.ts
|
|
3
|
+
import {
|
|
4
|
+
appendFileSync,
|
|
5
|
+
createWriteStream,
|
|
6
|
+
readFileSync,
|
|
7
|
+
existsSync,
|
|
8
|
+
mkdirSync,
|
|
9
|
+
readdirSync,
|
|
10
|
+
rmSync,
|
|
11
|
+
statSync
|
|
12
|
+
} from "fs";
|
|
13
|
+
import { Readable } from "stream";
|
|
14
|
+
import { pipeline } from "stream/promises";
|
|
15
|
+
import { dirname, join } from "path";
|
|
16
|
+
var LOG_FILE = join(process.cwd(), ".opencode", "event-log.txt");
|
|
17
|
+
var SKILLS_REGISTRY_URL = "https://releases.jfrog.io/artifactory/jfrog-skills";
|
|
18
|
+
var INSTRUCTIONS_REGISTRY_URL = "https://releases.jfrog.io/artifactory/run/ai/integrations/opencode/JFROG-INTEGRATION-MANAGEMENT.md";
|
|
19
|
+
var SKILLS_TO_INSTALL_URL = "https://releases.jfrog.io/artifactory/run/ai/integrations/opencode/JFROG-OPENCODE_SKILLS.json";
|
|
20
|
+
var fetchAndSaveFile = async (url, destPath, log) => {
|
|
21
|
+
const dir = dirname(destPath);
|
|
22
|
+
log("Fetching file from " + url + " and saving to " + destPath);
|
|
23
|
+
if (!existsSync(dir)) {
|
|
24
|
+
log("Creating skills directory: " + dir);
|
|
25
|
+
mkdirSync(dir, { recursive: true });
|
|
26
|
+
}
|
|
27
|
+
const response = await fetch(url);
|
|
28
|
+
if (!response.ok || !response.body) {
|
|
29
|
+
log(`Failed to fetch file from ${url}, status: ${response.status}, No response body from ${url}, response: ${JSON.stringify(response)}`);
|
|
30
|
+
return { success: false, error: `No response body from ${url}` };
|
|
31
|
+
}
|
|
32
|
+
const writer = createWriteStream(destPath);
|
|
33
|
+
await pipeline(Readable.fromWeb(response.body), writer);
|
|
34
|
+
return { success: true, error: undefined };
|
|
35
|
+
};
|
|
36
|
+
var extractZip = async ($, skillZipFile, skillName, skillVersion, skillZipDir, log) => {
|
|
37
|
+
const unzipResponse = await $`unzip -o ${skillZipFile} -d ${skillZipDir}`.nothrow().quiet();
|
|
38
|
+
if (unzipResponse.exitCode !== 0) {
|
|
39
|
+
log(`Failed to extract JFrog ${skillName} skill: ${unzipResponse.stderr}`);
|
|
40
|
+
return {
|
|
41
|
+
success: false,
|
|
42
|
+
error: `Failed to extract JFrog ${skillName}-${skillVersion} skill: ${unzipResponse.stderr}`
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
log(`JFrog ${skillName}-${skillVersion} skill extracted!`);
|
|
46
|
+
await $`rm -fR ${skillZipFile}`;
|
|
47
|
+
log(`Jfrog ${skillName} skill zip file removed!`);
|
|
48
|
+
return { success: true };
|
|
49
|
+
};
|
|
50
|
+
var setupPackageManagers = async (client, $, directory, sessionId, log) => {
|
|
51
|
+
let jfVersion;
|
|
52
|
+
try {
|
|
53
|
+
jfVersion = await $`jf --version`.nothrow().quiet();
|
|
54
|
+
} catch (e) {
|
|
55
|
+
log("jf version command threw: " + e);
|
|
56
|
+
return {
|
|
57
|
+
success: false,
|
|
58
|
+
message: "Jfrog cli is not installed, please use the jfrog-cli skill to install it"
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
if (!jfVersion || jfVersion.exitCode !== 0) {
|
|
62
|
+
log("jf version command failed");
|
|
63
|
+
return {
|
|
64
|
+
success: false,
|
|
65
|
+
message: "Jfrog cli is not installed, please use the jfrog-cli skill to install it"
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
const packageManagersFile = join(directory, ".jfrog", "local", "package-managers.json");
|
|
69
|
+
if (!existsSync(packageManagersFile)) {
|
|
70
|
+
return {
|
|
71
|
+
success: false,
|
|
72
|
+
message: "Jfrog packages are not setup, please use the jfrog-setup-package-managers skill to complete setup. type /skill and select jfrog-setup-package-managers"
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
const packageManagersConfig = JSON.parse(readFileSync(packageManagersFile, "utf8"));
|
|
76
|
+
const configuredPackageManagers = packageManagersConfig.configuredPackageManagers;
|
|
77
|
+
if (!configuredPackageManagers) {
|
|
78
|
+
return {
|
|
79
|
+
success: false,
|
|
80
|
+
message: "Jfrog packages are not setup, please use the jfrog-setup-package-managers skill to complete setup. type /skill and select jfrog-cli"
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
const results = { success: [], error: [] };
|
|
84
|
+
for (const packageManager in configuredPackageManagers) {
|
|
85
|
+
const packageManagerConfig = configuredPackageManagers[packageManager];
|
|
86
|
+
const result = await $`jf setup ${packageManager} --server-id ${packageManagerConfig.serverId} --repo ${packageManagerConfig.repository}`.nothrow().quiet();
|
|
87
|
+
if (result.exitCode !== 0) {
|
|
88
|
+
results.error.push({ packageManager, error: result.stderr });
|
|
89
|
+
} else {
|
|
90
|
+
results.success.push({ packageManager });
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
var errorMessages = "";
|
|
94
|
+
if (results.error.length > 0) {
|
|
95
|
+
errorMessages = "Failed to configure package managers:" + results.error.map((e) => e.packageManager + " - " + e.error).join(", ");
|
|
96
|
+
}
|
|
97
|
+
var successMessages = "";
|
|
98
|
+
if (results.success.length > 0) {
|
|
99
|
+
successMessages = "Package managers configured successfully:" + results.success.map((s) => s.packageManager).join(", ");
|
|
100
|
+
}
|
|
101
|
+
var success = true;
|
|
102
|
+
if (results.error.length > 0) {
|
|
103
|
+
success = false;
|
|
104
|
+
}
|
|
105
|
+
log("return message=" + errorMessages + successMessages);
|
|
106
|
+
return { success, message: errorMessages + " " + successMessages };
|
|
107
|
+
};
|
|
108
|
+
var pullSkills = async ($, directory, log) => {
|
|
109
|
+
const failedSkills = [];
|
|
110
|
+
const jfroginstructionExists = await $`test -f ${directory}/.jfrog/instructions/JFROG-INTEGRATION-MANAGEMENT.md`.nothrow().quiet();
|
|
111
|
+
if (jfroginstructionExists.exitCode !== 0) {
|
|
112
|
+
log("JFrog integration management instructions not found, importing them locally!");
|
|
113
|
+
const result = await fetchAndSaveFile(`${INSTRUCTIONS_REGISTRY_URL}`, `${directory}/.jfrog/instructions/JFROG-INTEGRATION-MANAGEMENT.md`, log);
|
|
114
|
+
if (!result.success) {
|
|
115
|
+
log(`Failed to import JFrog integration management instructions for Opencode: ${result.error}`);
|
|
116
|
+
failedSkills.push("JFROG-INTEGRATION-MANAGEMENT");
|
|
117
|
+
}
|
|
118
|
+
log("JFrog integration management instructions imported!");
|
|
119
|
+
}
|
|
120
|
+
const response = await fetch(SKILLS_TO_INSTALL_URL);
|
|
121
|
+
if (!response.body) {
|
|
122
|
+
log(`Failed to fetch base skills list from ${SKILLS_TO_INSTALL_URL}, No response body from ${SKILLS_TO_INSTALL_URL}`);
|
|
123
|
+
return {
|
|
124
|
+
success: false,
|
|
125
|
+
failedSkills: [
|
|
126
|
+
`ALL Skills failed to fetch, No response body from ${SKILLS_TO_INSTALL_URL}, cannot install skills`
|
|
127
|
+
]
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
const skillsBody = await response.json();
|
|
131
|
+
if (!skillsBody.skills) {
|
|
132
|
+
log(`Failed to fetch base skills list from ${SKILLS_TO_INSTALL_URL}, No skills body from ${SKILLS_TO_INSTALL_URL}`);
|
|
133
|
+
return {
|
|
134
|
+
success: false,
|
|
135
|
+
failedSkills: [
|
|
136
|
+
`ALL Skills failed to fetch, No skills body from ${SKILLS_TO_INSTALL_URL}, cannot install skills`
|
|
137
|
+
]
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
const skillsToPull = skillsBody.skills.map((skill) => ({
|
|
141
|
+
name: skill.name,
|
|
142
|
+
version: skill.version
|
|
143
|
+
}));
|
|
144
|
+
log(`HOME: ${process.env.HOME}`);
|
|
145
|
+
const skillsDir = join(process.env.HOME || "~", ".config", "opencode", "skills");
|
|
146
|
+
if (!existsSync(skillsDir)) {
|
|
147
|
+
mkdirSync(skillsDir, { recursive: true });
|
|
148
|
+
log(`Skills directory created: ${skillsDir}`);
|
|
149
|
+
}
|
|
150
|
+
for (const skill of skillsToPull) {
|
|
151
|
+
const keepVersion = String(skill.version).trim();
|
|
152
|
+
const skillInstallDir = join(skillsDir, skill.name, keepVersion);
|
|
153
|
+
const skillExists = existsSync(skillInstallDir) && statSync(skillInstallDir).isDirectory();
|
|
154
|
+
if (!skillExists) {
|
|
155
|
+
log(`JFrog ${skill.name}-${keepVersion} skill not found, importing them locally!`);
|
|
156
|
+
const skillName = skill.name;
|
|
157
|
+
const skillVersion = keepVersion;
|
|
158
|
+
const skillZipDir = join(skillsDir, skillName, skillVersion);
|
|
159
|
+
const skillZipFile = join(skillZipDir, `${skillName}-${skillVersion}.zip`);
|
|
160
|
+
const result = await fetchAndSaveFile(`${SKILLS_REGISTRY_URL}/${skillName}/${skillVersion}/${skillName}-${skillVersion}.zip`, `${skillZipFile}`, log);
|
|
161
|
+
if (!result.success) {
|
|
162
|
+
log("Failed to import JFrog mcp skill: " + result.error);
|
|
163
|
+
failedSkills.push(skillName);
|
|
164
|
+
} else {
|
|
165
|
+
const unzipResult = await extractZip($, skillZipFile, skillName, skillVersion, skillZipDir, log);
|
|
166
|
+
if (!unzipResult.success) {
|
|
167
|
+
log(`Failed to extract ${skillName} skill: ${unzipResult.error}`);
|
|
168
|
+
failedSkills.push(skillName);
|
|
169
|
+
} else {
|
|
170
|
+
log(`${skillName} skill handling completed!`);
|
|
171
|
+
pruneNonManifestSkillVersions(skillsDir, skillName, keepVersion, log);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
} else {
|
|
175
|
+
log(`JFrog ${skill.name}-${keepVersion} skill already present.`);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
if (failedSkills.length > 0) {
|
|
179
|
+
return { success: false, failedSkills };
|
|
180
|
+
} else {
|
|
181
|
+
return { success: true };
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
var pruneNonManifestSkillVersions = (skillsDir, skillName, keepVersion, log) => {
|
|
185
|
+
const skillRoot = join(skillsDir, skillName);
|
|
186
|
+
if (!existsSync(skillRoot)) {
|
|
187
|
+
log(`No local version dirs for ${skillName} under ${skillRoot}`);
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
let entries;
|
|
191
|
+
try {
|
|
192
|
+
entries = readdirSync(skillRoot);
|
|
193
|
+
} catch (e) {
|
|
194
|
+
log(`Could not list versions under ${skillRoot}: ${e}`);
|
|
195
|
+
return;
|
|
196
|
+
}
|
|
197
|
+
log(`Found version dirs for ${skillName}: ${entries.join(", ")} (latest version: ${keepVersion})`);
|
|
198
|
+
for (const olderVersion of entries) {
|
|
199
|
+
const versionPath = join(skillRoot, olderVersion);
|
|
200
|
+
let isDir = false;
|
|
201
|
+
try {
|
|
202
|
+
isDir = statSync(versionPath).isDirectory();
|
|
203
|
+
} catch {
|
|
204
|
+
continue;
|
|
205
|
+
}
|
|
206
|
+
if (!isDir) {
|
|
207
|
+
continue;
|
|
208
|
+
}
|
|
209
|
+
if (olderVersion === keepVersion) {
|
|
210
|
+
continue;
|
|
211
|
+
}
|
|
212
|
+
log(`Removing non-manifest version ${olderVersion} of ${skillName} (manifest: ${keepVersion})...`);
|
|
213
|
+
try {
|
|
214
|
+
rmSync(versionPath, { recursive: true, force: true });
|
|
215
|
+
log(`Removed ${skillName}/${olderVersion}`);
|
|
216
|
+
} catch (e) {
|
|
217
|
+
log(`Failed to remove ${skillName}/${olderVersion}: ${e}`);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
};
|
|
221
|
+
var jfrogOpencodePlugin = async ({ client, $, directory }) => {
|
|
222
|
+
const logDir = dirname(LOG_FILE);
|
|
223
|
+
if (!existsSync(logDir)) {
|
|
224
|
+
mkdirSync(logDir, { recursive: true });
|
|
225
|
+
}
|
|
226
|
+
const log = (message) => {
|
|
227
|
+
if (process.env.JFROG_DEBUG_LOGS === "true") {
|
|
228
|
+
appendFileSync(LOG_FILE, message + `
|
|
229
|
+
`, "utf-8");
|
|
230
|
+
}
|
|
231
|
+
};
|
|
232
|
+
log("JfrogOpencodePlugin starting...");
|
|
233
|
+
const pullSkillsResponse = await pullSkills($, directory, log);
|
|
234
|
+
log("pullSkillsResponse=" + JSON.stringify(pullSkillsResponse));
|
|
235
|
+
return {
|
|
236
|
+
config: async (config) => {
|
|
237
|
+
config.instructions = config.instructions || [];
|
|
238
|
+
if (config.instructions.indexOf(".jfrog/instructions/JFROG-INTEGRATION-MANAGEMENT.md") === -1) {
|
|
239
|
+
config.instructions.push(".jfrog/instructions/JFROG-INTEGRATION-MANAGEMENT.md");
|
|
240
|
+
log("jfrog integration management added to config");
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
event: async ({ event }) => {
|
|
244
|
+
if (event.type === "session.created") {
|
|
245
|
+
const sessionId = event.properties.info.id;
|
|
246
|
+
const responses = [];
|
|
247
|
+
var pkgMngrResponse;
|
|
248
|
+
pkgMngrResponse = await setupPackageManagers(client, $, directory, sessionId, log);
|
|
249
|
+
if (pkgMngrResponse) {
|
|
250
|
+
responses.push(pkgMngrResponse);
|
|
251
|
+
}
|
|
252
|
+
log("pkgMngrResponse=" + pkgMngrResponse?.message);
|
|
253
|
+
await client.tui.showToast({
|
|
254
|
+
body: {
|
|
255
|
+
message: responses.filter((s) => !s.success).map((s) => s.message).join(`
|
|
256
|
+
|
|
257
|
+
`),
|
|
258
|
+
variant: "error",
|
|
259
|
+
duration: 1e4
|
|
260
|
+
}
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
var server = jfrogOpencodePlugin;
|
|
267
|
+
var JfrogOpencodePlugin = jfrogOpencodePlugin;
|
|
268
|
+
export {
|
|
269
|
+
server,
|
|
270
|
+
JfrogOpencodePlugin
|
|
271
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jfrog/opencode-jfrog-plugin",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "JFrog Plugin for seamless integration to Opencode",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "JFrog",
|
|
7
|
+
"email": "carmith@jfrog.com"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"module": "src/index.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"jfrog",
|
|
19
|
+
"artifactory",
|
|
20
|
+
"opencode",
|
|
21
|
+
"plugin"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/jfrog/opencode-jfrog-plugin.git"
|
|
26
|
+
},
|
|
27
|
+
"license": "Apache-2.0",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"src/version.ts"
|
|
34
|
+
],
|
|
35
|
+
"main": "dist/index.js",
|
|
36
|
+
"types": "dist/index.d.ts",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@eslint/js": "^9.39.1",
|
|
39
|
+
"@types/node": "^20.11.5",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "8.47.0",
|
|
41
|
+
"@typescript-eslint/parser": "8.47.0",
|
|
42
|
+
"bun-types": "latest",
|
|
43
|
+
"eslint": "^9.39.1",
|
|
44
|
+
"eslint-config-prettier": "10.1.8",
|
|
45
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
46
|
+
"prettier": "^3.2.4",
|
|
47
|
+
"typescript-eslint": "^8.47.0",
|
|
48
|
+
"vitest": "^3.2.4"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@opencode-ai/plugin": "^1.4.6"
|
|
52
|
+
}
|
|
53
|
+
}
|