toga-ai 1.0.14 → 1.0.15

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,6 +1,6 @@
1
1
  {
2
2
  "name": "toga-ai",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "TOGA Technology Team Claude Knowledge System — shared AI coding harness with skills, knowledge base CLI, and project installer for Claude Code.",
5
5
  "keywords": [
6
6
  "claude",
@@ -25,7 +25,7 @@ const path = require('path');
25
25
  const { spawnSync } = require('child_process');
26
26
  const os = require('os');
27
27
 
28
- const REPO_URL = 'https://github.com/TOGATechnology/claude';
28
+ const REPO_URL = 'https://github.com/agilantsolutions/claude';
29
29
  const REPO_ENV_VAR = 'TOGA_TECH_REPO';
30
30
  const CACHE_FILE = path.join(os.homedir(), '.toga-tech-path');
31
31
 
@@ -187,7 +187,7 @@ function tryGitPull(repoDir) {
187
187
 
188
188
  const afterCount = countMd(path.join(repoDir, 'knowledge'));
189
189
  const newDocs = Math.max(0, afterCount - beforeCount);
190
- return { pulled: true, newDocs, message: 'pulled ' + newDocs + ' new knowledge doc' + (newDocs !== 1 ? 's' : '') + ' from TOGATechnology/claude' };
190
+ return { pulled: true, newDocs, message: 'pulled ' + newDocs + ' new knowledge doc' + (newDocs !== 1 ? 's' : '') + ' from agilantsolutions/claude' };
191
191
  }
192
192
 
193
193
  /* ------------------------------------------------------------------ */
@@ -529,7 +529,7 @@ function main() {
529
529
  if (pullResult.pulled) {
530
530
  knowledgeDir = repoDir;
531
531
  if (pullResult.newDocs > 0) {
532
- gitUpdateLine = 'git update: pulled ' + pullResult.newDocs + ' new knowledge doc' + (pullResult.newDocs !== 1 ? 's' : '') + ' from TOGATechnology/claude';
532
+ gitUpdateLine = 'git update: pulled ' + pullResult.newDocs + ' new knowledge doc' + (pullResult.newDocs !== 1 ? 's' : '') + ' from agilantsolutions/claude';
533
533
  } else if (pullResult.message !== 'already up to date') {
534
534
  gitUpdateLine = 'git update: ' + pullResult.message;
535
535
  }