opaline 0.0.1-security → 0.6.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 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,32 @@
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
+ npm install --global opaline
8
+ opaline login
9
+ opaline upload
10
+ opaline doctor
11
+ ```
12
+
13
+ `opaline` is the recommended install name. It runs the same CLI implementation
14
+ as `@opalinehq/cli`, pinned to the matching release. Both `@opalinehq/cli` and
15
+ the `rudel` compatibility package remain supported.
16
+
17
+ When switching from a global `@opalinehq/cli` install, run
18
+ `npm uninstall --global @opalinehq/cli` first: both packages provide the
19
+ `opaline` command. Existing credentials, settings, and upload state remain in
20
+ `~/.rudel`; no new login is required. Run `opaline upload` to set up hooks
21
+ using the `opaline` command when migrating from `rudel`.
22
+
23
+ For commands, configuration, troubleshooting, and the full security/data
24
+ handling disclosure, see the
25
+ [repository README](https://github.com/opalinehq/cli#readme).
26
+
27
+ Session transcripts are uploaded. Known-pattern secret filtering is best-effort
28
+ and cannot guarantee that every sensitive value is removed.
29
+
30
+ ## License
31
+
32
+ Copyright (c) 2026 Opaline Labs, Inc. Licensed under [MIT](LICENSE).
package/bin/opaline.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { runCli } from "@opalinehq/cli/run";
3
+
4
+ await runCli(process.argv.slice(2));
package/package.json CHANGED
@@ -1,6 +1,37 @@
1
1
  {
2
- "name": "opaline",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
2
+ "name": "opaline",
3
+ "version": "0.6.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.6.0"
36
+ }
6
37
  }