@tessl/cli 0.28.0 → 0.50.3

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/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # Tessl
2
2
 
3
- Tessl keeps coding agents on rails using spec-driven development (SDD):
3
+ Tessl is an Agent Enablement Platform that gives your agents the context they're missing.
4
4
 
5
5
  - Install usage docs for your favorite open source library from the Tessl Spec Registry
6
- - Use the Tessl framework to create your own spec-driven project
6
+ - Create your own internal docs and share with your team
7
7
 
8
8
  **Explore more in our [official documentation](https://docs.tessl.io)**.
9
9
 
10
+ Visit the [Registry](https://tessl.io/registry) to see which open source libraries we provide documentation for.
11
+
10
12
  ## Get started
11
13
 
12
14
  1. Install Tessl:
@@ -25,8 +27,6 @@ We love feedback. You can use the `tessl feedback` command to report issues or s
25
27
 
26
28
  You are welcome to join the [Tessl Discord](https://tessl.co/4eV736y) to connect with other developers using Tessl.
27
29
 
28
- For help with the beta Tessl Framework, you can join the Discord channel - #tessl-early-access, to quickly reach the team.
29
-
30
30
  ## Terms and Conditions
31
31
 
32
32
  - [Terms of Service](https://tessl.io/policies/terms)
package/package.json CHANGED
@@ -1,46 +1,36 @@
1
1
  {
2
2
  "name": "@tessl/cli",
3
- "version": "0.28.0",
4
- "description": "Command line interface and MCP server for using Tessl",
5
- "types": "dist/cli.d.ts",
3
+ "version": "0.50.3",
4
+ "description": "Tessl CLI - Registry and workspace operations with MCP support",
5
+ "author": "Tessl",
6
+ "license": "UNLICENSED",
7
+ "type": "module",
8
+ "main": "src/main.js",
6
9
  "bin": {
7
- "tessl": "dist/bundle.mjs"
10
+ "tessl": "src/main.js"
8
11
  },
9
- "keywords": [
10
- "tessl",
11
- "cli",
12
- "command-line",
13
- "tool",
14
- "development",
15
- "mcp",
16
- "spec-driven",
17
- "ai"
12
+ "files": [
13
+ "src/main.js"
18
14
  ],
19
- "author": "Tessl",
20
- "license": "SEE LICENSE IN LICENSE.md",
21
- "homepage": "https://tessl.io",
22
- "bugs": {
23
- "url": "https://github.com/tesslio/cli/issues"
15
+ "engines": {
16
+ "node": ">=18"
24
17
  },
25
18
  "dependencies": {
26
- "pino": "9.13.1",
27
- "pino-pretty": "13.0.0",
28
- "pino-opentelemetry-transport": "1.0.1",
29
- "otlp-logger": "1.1.12",
19
+ "pino": "9.14.0",
20
+ "pino-pretty": "13.1.2",
21
+ "pino-opentelemetry-transport": "1.1.0",
30
22
  "@opentelemetry/api-logs": "0.204.0",
31
23
  "@opentelemetry/sdk-logs": "0.204.0",
32
- "@opentelemetry/exporter-logs-otlp-grpc": "0.204.0",
33
24
  "@opentelemetry/exporter-logs-otlp-http": "0.204.0",
34
25
  "@opentelemetry/exporter-logs-otlp-proto": "0.204.0",
26
+ "@opentelemetry/exporter-trace-otlp-http": "0.204.0",
35
27
  "@opentelemetry/otlp-transformer": "0.204.0",
36
28
  "@opentelemetry/semantic-conventions": "1.36.0",
37
29
  "@opentelemetry/sdk-metrics": "2.1.0",
38
- "@grpc/grpc-js": "1.13.4",
39
- "protobufjs": "7.5.3",
40
- "tsx": "4.20.3",
41
- "open": "10.1.2"
42
- },
43
- "engines": {
44
- "node": ">=22.0.0"
30
+ "@opentelemetry/api": "1.9.0",
31
+ "@opentelemetry/instrumentation-undici": "0.18.0",
32
+ "@opentelemetry/resources": "2.2.0",
33
+ "@opentelemetry/sdk-node": "0.204.0",
34
+ "@opentelemetry/sdk-trace-node": "2.2.0"
45
35
  }
46
- }
36
+ }