fraim-framework 2.0.153 → 2.0.154

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.
@@ -256,14 +256,16 @@ const runInitProject = async (options = {}) => {
256
256
  else {
257
257
  result.warnings.push('Sync was skipped for this run.');
258
258
  }
259
- const codexAvailable = (0, ide_detector_1.detectInstalledIDEs)().some((ide) => ide.configType === 'codex');
259
+ const codexAvailable = (0, ide_detector_1.detectInstalledIDEs)().some((ide) => ide.configType === 'codex') ||
260
+ (0, ide_detector_1.detectInstalledIDEs)('cli-runnable').some((ide) => ide.configType === 'codex');
260
261
  if (codexAvailable) {
261
262
  const codexLocalResult = (0, codex_local_config_1.ensureCodexLocalConfig)(projectRoot);
262
263
  const status = codexLocalResult.created ? 'Created' : codexLocalResult.updated ? 'Updated' : 'Verified';
263
264
  console.log(chalk_1.default.green(`${status} project Codex config at ${codexLocalResult.path}`));
264
265
  }
265
266
  // Enable token telemetry for Claude Code (user-level, applies to all projects)
266
- const claudeCodeAvailable = (0, ide_detector_1.detectInstalledIDEs)().some((ide) => ide.configType === 'claude-code');
267
+ const claudeCodeAvailable = (0, ide_detector_1.detectInstalledIDEs)().some((ide) => ide.configType === 'claude-code') ||
268
+ (0, ide_detector_1.detectInstalledIDEs)('cli-runnable').some((ide) => ide.configType === 'claude-code');
267
269
  if (claudeCodeAvailable) {
268
270
  (0, claude_code_telemetry_1.ensureClaudeCodeTelemetryEnv)();
269
271
  }
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "fraim-framework",
3
- "version": "2.0.153",
3
+ "version": "2.0.154",
4
4
  "description": "FRAIM: AI Workforce Infrastructure — the organizational capability that turns AI agents into an accountable workforce, their operators into capable AI managers, and executives into leaders with clear optics on AI proficiency.",
5
5
  "main": "index.js",
6
- "bin": "./bin/fraim.js",
6
+ "bin": {
7
+ "fraim-framework": "bin/fraim.js"
8
+ },
7
9
  "scripts": {
8
10
  "dev": "tsx --watch src/fraim-mcp-server.ts > server.log 2>&1",
9
11
  "dev:prod": "npm run build && node dist/src/fraim-mcp-server.js > server.log 2>&1",