ithos 0.1.2 → 0.1.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 +6 -3
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# ithos
|
|
2
2
|
|
|
3
|
-
> The terminal CLI for Ithos — the local-first institutional memory layer for
|
|
3
|
+
> The terminal CLI for Ithos — the local-first institutional memory layer for
|
|
4
|
+
> AI-assisted software development.
|
|
4
5
|
|
|
5
|
-
This is the command-line client used to initialize and manage an Ithos
|
|
6
|
+
This is the command-line client used to initialize and manage an Ithos
|
|
7
|
+
repository.
|
|
6
8
|
|
|
7
|
-
For the full documentation, architecture details, and MCP setup guides, please
|
|
9
|
+
For the full documentation, architecture details, and MCP setup guides, please
|
|
10
|
+
visit the [Main Ithos Repository](https://github.com/kry5h/ithos).
|
|
8
11
|
|
|
9
12
|
## Installation
|
|
10
13
|
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYpC,wBAAgB,SAAS,IAAI,OAAO,
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYpC,wBAAgB,SAAS,IAAI,OAAO,CA0HnC"}
|
package/dist/cli.js
CHANGED
|
@@ -56,8 +56,12 @@ export function createCli() {
|
|
|
56
56
|
process.exitCode = 1;
|
|
57
57
|
return;
|
|
58
58
|
}
|
|
59
|
-
const tags = options.tags
|
|
60
|
-
|
|
59
|
+
const tags = options.tags
|
|
60
|
+
? options.tags.split(",").map((t) => t.trim())
|
|
61
|
+
: undefined;
|
|
62
|
+
const related = options.related
|
|
63
|
+
? options.related.split(",").map((r) => r.trim())
|
|
64
|
+
: undefined;
|
|
61
65
|
const file = await recordArtifact({
|
|
62
66
|
type: options.type,
|
|
63
67
|
title: options.title,
|