@hasna/coders 0.2.6 → 0.2.7
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 +1 -2
- package/README.md +8 -4
- package/dist/cli.mjs +7135 -12086
- package/dist/cli.mjs.map +4 -4
- package/package.json +4 -8
- package/dist/coders-mcp.js +0 -2
- package/dist/coders-mcp.mjs +0 -109236
- package/dist/coders-mcp.mjs.map +0 -7
package/LICENSE
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
Apache License
|
|
3
2
|
Version 2.0, January 2004
|
|
4
3
|
http://www.apache.org/licenses/
|
|
@@ -176,7 +175,7 @@
|
|
|
176
175
|
|
|
177
176
|
END OF TERMS AND CONDITIONS
|
|
178
177
|
|
|
179
|
-
Copyright 2026
|
|
178
|
+
Copyright 2026 hasna
|
|
180
179
|
|
|
181
180
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
182
181
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -19,14 +19,18 @@ coders --help
|
|
|
19
19
|
|
|
20
20
|
## Cloud Sync
|
|
21
21
|
|
|
22
|
-
This package supports cloud sync
|
|
22
|
+
This package supports optional cloud sync through a package-local Postgres connection:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
|
|
26
|
-
cloud
|
|
27
|
-
cloud
|
|
25
|
+
export HASNA_CODERS_CLOUD_DATABASE_URL=postgres://...
|
|
26
|
+
coders cloud status
|
|
27
|
+
coders cloud push
|
|
28
|
+
coders cloud pull
|
|
29
|
+
coders cloud sync
|
|
28
30
|
```
|
|
29
31
|
|
|
32
|
+
The MCP server also exposes `cloud_status`, `cloud_push`, `cloud_pull`, and `cloud_sync`.
|
|
33
|
+
|
|
30
34
|
## Data Directory
|
|
31
35
|
|
|
32
36
|
Data is stored in `~/.hasna/coders/`.
|