telos-framework 0.1.0 → 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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Telos: Purpose-Driven Multi-Agent Development Framework
2
2
 
3
+ [![npm version](https://badge.fury.io/js/telos-framework.svg)](https://www.npmjs.com/package/telos-framework)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js Version](https://img.shields.io/node/v/telos-framework)](https://nodejs.org)
6
+ [![Tests](https://img.shields.io/badge/tests-29%20passing-brightgreen)]()
7
+
3
8
  A philosophically-grounded AI collective that embeds Aristotelian purpose
4
9
  hierarchy into software development. Every line of code serves your ultimate
5
10
  mission.
@@ -240,6 +245,6 @@ MIT License - see [LICENSE](LICENSE)
240
245
  **Transform AI-assisted development from reactive tool usage to coherent,
241
246
  purpose-aligned creation.**
242
247
 
243
- [GitHub Repository](https://github.com/telos-framework/telos) |
248
+ [GitHub Repository](https://github.com/telos-framework/init) |
244
249
  [Documentation](https://telos-framework.dev) |
245
- [Report Issues](https://github.com/telos-framework/telos/issues)
250
+ [Report Issues](https://github.com/telos-framework/init/issues)
@@ -1,4 +1,4 @@
1
- const inquirer = require('inquirer');
1
+ const { default: inquirer } = require('inquirer');
2
2
  const chalk = require('chalk');
3
3
 
4
4
  const LEVEL_DESCRIPTIONS = {
@@ -1,4 +1,4 @@
1
- const inquirer = require('inquirer');
1
+ const { default: inquirer } = require('inquirer');
2
2
  const chalk = require('chalk');
3
3
 
4
4
  async function discoverTelos(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telos-framework",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Telos-driven Multi-Agent Development Framework - A philosophically-grounded AI collective for purpose-aligned software development",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -9,7 +9,8 @@
9
9
  "scripts": {
10
10
  "test": "vitest run",
11
11
  "test:watch": "vitest --watch",
12
- "prepublishOnly": "npm test"
12
+ "prepublishOnly": "npm test",
13
+ "release": "release-it"
13
14
  },
14
15
  "keywords": [
15
16
  "ai",
@@ -29,11 +30,11 @@
29
30
  "license": "MIT",
30
31
  "repository": {
31
32
  "type": "git",
32
- "url": "https://github.com/telos-framework/telos.git"
33
+ "url": "https://github.com/telos-framework/init.git"
33
34
  },
34
- "homepage": "https://github.com/telos-framework/telos#readme",
35
+ "homepage": "https://github.com/telos-framework/init#readme",
35
36
  "bugs": {
36
- "url": "https://github.com/telos-framework/telos/issues"
37
+ "url": "https://github.com/telos-framework/init/issues"
37
38
  },
38
39
  "files": [
39
40
  "bin/",
@@ -44,13 +45,14 @@
44
45
  "USAGE.md"
45
46
  ],
46
47
  "dependencies": {
48
+ "chalk": "^4.1.2",
47
49
  "commander": "^11.1.0",
48
- "inquirer": "^9.2.12",
49
50
  "handlebars": "^4.7.8",
50
- "chalk": "^4.1.2",
51
+ "inquirer": "^9.2.12",
51
52
  "ora": "^5.4.1"
52
53
  },
53
54
  "devDependencies": {
55
+ "release-it": "^19.0.5",
54
56
  "vitest": "^1.0.0"
55
57
  },
56
58
  "engines": {