allagents 0.1.0

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.
@@ -0,0 +1,15 @@
1
+ # Workspace root files (optional)
2
+ # workspace:
3
+ # source: ./path/to/config # local path, GitHub URL, or plugin@marketplace
4
+ # files:
5
+ # - CLAUDE.md
6
+ # - AGENTS.md
7
+ # - source: docs/CLAUDE.md # explicit source/dest mapping
8
+ # dest: CLAUDE.md
9
+
10
+ repositories: []
11
+
12
+ plugins: []
13
+
14
+ clients:
15
+ - claude
@@ -0,0 +1,14 @@
1
+ # Workspace
2
+
3
+ ## Development
4
+
5
+ To run tests:
6
+ ```bash
7
+ npm test
8
+ ```
9
+
10
+ ## Guidelines
11
+
12
+ - Add project-specific coding conventions here
13
+ - Document architectural decisions
14
+ - Include workflow preferences
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "allagents",
3
+ "version": "0.1.0",
4
+ "description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
5
+ "type": "module",
6
+ "bin": {
7
+ "allagents": "./dist/cli/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build ./src/cli/index.ts --outdir ./dist --target node && cp -r src/templates dist/",
14
+ "docs:install": "bun install --cwd docs",
15
+ "docs:build": "bun run --cwd docs build",
16
+ "dev": "bun run src/cli/index.ts",
17
+ "test": "bun test tests/unit/validators tests/unit/utils tests/unit/models && bun test tests/unit/core/marketplace.test.ts tests/unit/core/sync.test.ts tests/unit/core/transform-glob.test.ts && bun test tests/unit/core/plugin.test.ts",
18
+ "test:watch": "bun test --watch",
19
+ "test:coverage": "bun test --coverage",
20
+ "test:integration": "bats tests/integration/*.bats",
21
+ "typecheck": "tsc --noEmit",
22
+ "lint": "biome lint src",
23
+ "lint:fix": "biome lint --write src",
24
+ "format": "biome format --write src",
25
+ "check": "biome check src",
26
+ "check:fix": "biome check --write src",
27
+ "prepare": "bun run build"
28
+ },
29
+ "keywords": [
30
+ "cli",
31
+ "ai",
32
+ "agents",
33
+ "workspace",
34
+ "plugins",
35
+ "multi-repo",
36
+ "claude",
37
+ "copilot",
38
+ "codex"
39
+ ],
40
+ "author": "",
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "commander": "^11.1.0",
44
+ "execa": "^8.0.1",
45
+ "fast-glob": "^3.3.3",
46
+ "gray-matter": "^4.0.3",
47
+ "js-yaml": "^4.1.0",
48
+ "simple-git": "^3.22.0",
49
+ "zod": "^3.22.4"
50
+ },
51
+ "devDependencies": {
52
+ "@types/bun": "latest",
53
+ "@types/js-yaml": "^4.0.9",
54
+ "@types/node": "^20.11.5",
55
+ "@biomejs/biome": "^1.9.0",
56
+ "typescript": "^5.3.3"
57
+ },
58
+ "engines": {
59
+ "node": ">=18.0.0",
60
+ "bun": ">=1.0.0"
61
+ }
62
+ }