allagents 1.13.0-next.1 → 1.13.1-next.1

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.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6369,8 +6369,9 @@ __export(exports_constants, {
6369
6369
  CONFIG_DIR: () => CONFIG_DIR,
6370
6370
  AGENT_FILES: () => AGENT_FILES
6371
6371
  });
6372
+ import { homedir } from "node:os";
6372
6373
  function getHomeDir() {
6373
- return process.env.HOME || process.env.USERPROFILE || "~";
6374
+ return homedir();
6374
6375
  }
6375
6376
  function generateWorkspaceRules(repositories, skillsIndexRefs = []) {
6376
6377
  const repoList = repositories.map((r) => `- ${r.path}${r.description ? ` - ${r.description}` : ""}`).join(`
@@ -42574,7 +42575,7 @@ var package_default;
42574
42575
  var init_package = __esm(() => {
42575
42576
  package_default = {
42576
42577
  name: "allagents",
42577
- version: "1.13.0-next.1",
42578
+ version: "1.13.1-next.1",
42578
42579
  packageManager: "bun@1.3.12",
42579
42580
  description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
42580
42581
  type: "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allagents",
3
- "version": "1.13.0-next.1",
3
+ "version": "1.13.1-next.1",
4
4
  "packageManager": "bun@1.3.12",
5
5
  "description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
6
6
  "type": "module",