@hasna/coders 0.2.1 → 0.2.2
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 +36 -0
- package/dist/cli.js +1 -1
- package/dist/cli.mjs +3624 -3189
- package/dist/cli.mjs.map +3 -3
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @hasna/coders
|
|
2
|
+
|
|
3
|
+
Open-source coding agent CLI with native @hasna/* ecosystem integration
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@hasna/coders)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install -g @hasna/coders
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## CLI Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
coders --help
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Cloud Sync
|
|
21
|
+
|
|
22
|
+
This package supports cloud sync via `@hasna/cloud`:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cloud setup
|
|
26
|
+
cloud sync push --service coders
|
|
27
|
+
cloud sync pull --service coders
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Data Directory
|
|
31
|
+
|
|
32
|
+
Data is stored in `~/.hasna/coders/`.
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
Apache-2.0 -- see [LICENSE](LICENSE)
|
package/dist/cli.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env bun
|
|
2
2
|
import "./cli.mjs";
|