@jive-ai/cli 0.0.6 → 0.0.7

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -31
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1862,10 +1862,6 @@ async function doctorCommand() {
1862
1862
  name: "Subagent Runner",
1863
1863
  result: await checkSubagentRunner()
1864
1864
  });
1865
- results.push({
1866
- name: "Telemetry Plugin",
1867
- result: await checkPlugin()
1868
- });
1869
1865
  results.push({
1870
1866
  name: "Plugin Config",
1871
1867
  result: await checkPluginConfig()
@@ -1987,37 +1983,12 @@ async function checkSubagentRunner() {
1987
1983
  };
1988
1984
  }
1989
1985
  }
1990
- async function checkPlugin() {
1991
- const pluginStatus = await getPluginStatus();
1992
- if (!pluginStatus.installed) return {
1993
- status: "warn",
1994
- message: "Telemetry plugin not installed",
1995
- details: "Subagent execution tracking will not work",
1996
- fix: "Run \"jive init\" to install the plugin, or see SUBAGENT_VISIBILITY.md"
1997
- };
1998
- try {
1999
- const pluginJsonPath = path.join(pluginStatus.pluginPath, ".claude-plugin", "plugin.json");
2000
- await fs.access(pluginJsonPath);
2001
- return {
2002
- status: "pass",
2003
- message: "Telemetry plugin installed",
2004
- details: pluginStatus.pluginPath
2005
- };
2006
- } catch {
2007
- return {
2008
- status: "warn",
2009
- message: "Plugin installation incomplete",
2010
- details: "Plugin directory exists but files are missing",
2011
- fix: "Run \"jive init\" to reinstall the plugin"
2012
- };
2013
- }
2014
- }
2015
1986
  async function checkPluginConfig() {
2016
1987
  const pluginStatus = await getPluginStatus();
2017
1988
  if (!pluginStatus.configured) return {
2018
1989
  status: "warn",
2019
1990
  message: "Plugin not configured",
2020
- details: "Missing .jive/config.json with telemetry settings",
1991
+ details: "Missing .jive/config.json",
2021
1992
  fix: "Run \"jive init\" to create plugin configuration"
2022
1993
  };
2023
1994
  try {
@@ -2095,7 +2066,7 @@ async function checkTeamMembership() {
2095
2066
 
2096
2067
  //#endregion
2097
2068
  //#region package.json
2098
- var version = "0.0.6";
2069
+ var version = "0.0.7";
2099
2070
 
2100
2071
  //#endregion
2101
2072
  //#region src/index.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@jive-ai/cli",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "main": "index.js",
6
6
  "files": [
7
7
  "dist",