@vortex-os/base 0.0.1 → 0.1.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/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@vortex-os/base",
3
- "version": "0.0.1",
4
- "description": "Base framework entry point for VortEX (placeholder full v0.1.0 ships in a follow-up cycle).",
3
+ "version": "0.1.0",
4
+ "description": "Base entry point for VortEX — a Multi-Agent Personal AI Work OS framework",
5
5
  "license": "MIT",
6
6
  "author": "dydan77 <styxii77@nate.com>",
7
- "homepage": "https://github.com/vortex-os-project/base#readme",
7
+ "homepage": "https://github.com/dydan77/vortex#readme",
8
8
  "bugs": {
9
- "url": "https://github.com/vortex-os-project/base/issues"
9
+ "url": "https://github.com/dydan77/vortex/issues"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git+https://github.com/vortex-os-project/base.git"
13
+ "url": "git+https://github.com/dydan77/vortex.git",
14
+ "directory": "_publish"
14
15
  },
15
16
  "keywords": [
16
17
  "vortex",
@@ -19,7 +20,11 @@
19
20
  "agent",
20
21
  "ai-os",
21
22
  "multi-agent",
22
- "personal-knowledge-base"
23
+ "personal-knowledge-base",
24
+ "claude-code",
25
+ "codex",
26
+ "gemini",
27
+ "cursor"
23
28
  ],
24
29
  "type": "module",
25
30
  "main": "./dist/index.js",
@@ -32,17 +37,19 @@
32
37
  },
33
38
  "files": [
34
39
  "dist",
35
- "src",
36
40
  "README.md",
37
41
  "LICENSE"
38
42
  ],
39
43
  "scripts": {
40
- "build": "tsc -p tsconfig.json",
41
- "typecheck": "tsc -p tsconfig.json --noEmit",
44
+ "build": "tsup --config tsup.config.ts",
42
45
  "prepublishOnly": "npm run build"
43
46
  },
47
+ "dependencies": {
48
+ "yaml": "^2.6.0"
49
+ },
44
50
  "devDependencies": {
45
51
  "@types/node": "^24.0.0",
52
+ "tsup": "^8.5.1",
46
53
  "typescript": "^5.9.0"
47
54
  },
48
55
  "engines": {
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,eAAO,MAAM,mBAAmB,EAAG,OAAgB,CAAC;AAEpD,mFAAmF;AACnF,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC;IAChC,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;CAC7B;AAED,eAAO,MAAM,cAAc,EAAE,mBAO5B,CAAC"}
package/src/index.ts DELETED
@@ -1,33 +0,0 @@
1
- /**
2
- * @vortex-os/base — base framework entry point for VortEX.
3
- *
4
- * This is the initial release (0.0.1). The full v0.1.0 will aggregate the
5
- * framework modules (core, slash-commands, til, decision-log, memory-system,
6
- * runbooks, data-lint, link-rewriter, index-generator, report-generator,
7
- * ai-coding-pitfalls, tool-rules, session-rituals) into a single importable
8
- * surface, plus an add-on discovery hook. See
9
- * https://github.com/dydan77/vortex/blob/main/docs/phase-10-split-plan.md
10
- * (Phase 10 split plan v2 — capability-cluster) for the shape.
11
- *
12
- * Until v0.1.0 lands, this package exposes framework metadata only.
13
- */
14
-
15
- export const VORTEX_BASE_VERSION = "0.0.1" as const;
16
-
17
- /** Framework metadata available at install time, without pulling in any module. */
18
- export interface VortexFrameworkMeta {
19
- readonly version: string;
20
- readonly framework: "vortex-os";
21
- readonly fullReleaseTarget: string;
22
- readonly designReference: string;
23
- readonly repository: string;
24
- }
25
-
26
- export const FRAMEWORK_META: VortexFrameworkMeta = {
27
- version: VORTEX_BASE_VERSION,
28
- framework: "vortex-os",
29
- fullReleaseTarget: "0.1.0",
30
- designReference:
31
- "https://github.com/dydan77/vortex/blob/main/docs/phase-10-split-plan.md",
32
- repository: "https://github.com/vortex-os-project/base",
33
- };