opaline 0.0.1-security → 0.7.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 +21 -0
- package/README.md +31 -0
- package/bin/opaline.js +4 -0
- package/package.json +35 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Opaline Labs, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Opaline CLI
|
|
2
|
+
|
|
3
|
+
Capture Claude Code and OpenAI Codex sessions and upload them to Opaline for
|
|
4
|
+
team analytics. Requires Node.js 20 or newer.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npx opaline@latest
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Run from any directory, choose repositories, and review the upload before browser login. Opaline uploads the selected Claude Code and Codex sessions and sets up automatic uploads for those repositories.
|
|
11
|
+
|
|
12
|
+
`opaline` is the recommended install name. It runs the same CLI implementation
|
|
13
|
+
as `@opalinehq/cli`, pinned to the matching release. Both `@opalinehq/cli` and
|
|
14
|
+
the `rudel` compatibility package remain supported.
|
|
15
|
+
|
|
16
|
+
When switching from a global `@opalinehq/cli` install, run
|
|
17
|
+
`npm uninstall --global @opalinehq/cli` first: both packages provide the
|
|
18
|
+
`opaline` command. Existing credentials, settings, and upload state remain in
|
|
19
|
+
`~/.rudel`; no new login is required. Run `opaline upload` to set up hooks
|
|
20
|
+
using the `opaline` command when migrating from `rudel`.
|
|
21
|
+
|
|
22
|
+
For commands, configuration, troubleshooting, and the full security/data
|
|
23
|
+
handling disclosure, see the
|
|
24
|
+
[repository README](https://github.com/opalinehq/cli#readme).
|
|
25
|
+
|
|
26
|
+
Session transcripts are uploaded. Known-pattern secret filtering is best-effort
|
|
27
|
+
and cannot guarantee that every sensitive value is removed.
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
Copyright (c) 2026 Opaline Labs, Inc. Licensed under [MIT](LICENSE).
|
package/bin/opaline.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"name": "opaline",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Opaline CLI for Claude Code and Codex session analytics",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://opaline.so",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/opalinehq/cli.git",
|
|
14
|
+
"directory": "packages/opaline"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/opalinehq/cli/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"opaline",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"codex",
|
|
23
|
+
"analytics",
|
|
24
|
+
"cli"
|
|
25
|
+
],
|
|
26
|
+
"author": "Opaline",
|
|
27
|
+
"bin": {
|
|
28
|
+
"opaline": "bin/opaline.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"bin",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@opalinehq/cli": "0.7.0"
|
|
36
|
+
}
|
|
6
37
|
}
|