@tessl/cli 0.21.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.md +3 -0
- package/README.md +33 -0
- package/dist/bundle.mjs +4739 -0
- package/dist/cli.d.ts +4685 -0
- package/package.json +40 -0
package/LICENSE.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Tessl
|
|
2
|
+
|
|
3
|
+
Tessl helps code agents stay on track using Spec Driven Development (SDD):
|
|
4
|
+
|
|
5
|
+
- Find your favorite Open Source library in our spec registry
|
|
6
|
+
- Use the Tessl framework to create and manage your own specs
|
|
7
|
+
|
|
8
|
+
**Explore more in our [official documentation](https://docs.tessl.io)**.
|
|
9
|
+
|
|
10
|
+
## Get started
|
|
11
|
+
|
|
12
|
+
1. Install Tessl:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install -g @tessl/cli
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
2. Now in your project directory run `tessl`
|
|
19
|
+
|
|
20
|
+
## Reporting Bugs
|
|
21
|
+
|
|
22
|
+
We love feedback. You can use the `tessl feedback` command to report issues or share feedback directly within Tessl, file a [GitHub issue](https://github.com/tesslio/cli/issues) or just email <support@tessl.io>.
|
|
23
|
+
|
|
24
|
+
## Connect on Discord
|
|
25
|
+
|
|
26
|
+
You are welcome to join the [Tessl Discord](https://tessl.co/4eV736y) to connect with other developers using Tessl.
|
|
27
|
+
|
|
28
|
+
For help with the beta Tessl Framework, you can join the Discord channel - #tessl-early-access, to quickly reach the team.
|
|
29
|
+
|
|
30
|
+
## Terms and Conditions
|
|
31
|
+
|
|
32
|
+
- [Terms of Service](https://tessl.io/policies/terms)
|
|
33
|
+
- [Privacy Policy](https://tessl.io/policies/privacy-cookies)
|