telos-framework 0.1.2 → 0.1.4

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.
@@ -23,11 +23,18 @@ async function initCommand(options) {
23
23
  try {
24
24
  const telosData = await discoverTelos(options);
25
25
 
26
- const spinner = ora('Building purpose hierarchy...').start();
27
- const hierarchy = await buildHierarchy(telosData, options);
28
- spinner.succeed('Purpose hierarchy built');
26
+ let hierarchy;
27
+
28
+ if (options.quick) {
29
+ const spinner = ora('Building purpose hierarchy...').start();
30
+ hierarchy = await buildHierarchy(telosData, options);
31
+ spinner.succeed('Purpose hierarchy built');
32
+ } else {
33
+ hierarchy = await buildHierarchy(telosData, options);
34
+ console.log(chalk.green('\n✓ Purpose hierarchy built\n'));
35
+ }
29
36
 
30
- spinner.start('Generating TELOS.md...');
37
+ const spinner = ora('Generating TELOS.md...').start();
31
38
  const telosPath = path.join(process.cwd(), 'telos', 'content', 'TELOS.md');
32
39
  await generateTelosMd(hierarchy, telosPath);
33
40
  spinner.succeed(`Generated ${telosPath}`);
@@ -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.2",
3
+ "version": "0.1.4",
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": {