agent-ctrl-cli 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.
Files changed (4) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +173 -0
  3. package/dist/index.js +8871 -0
  4. package/package.json +59 -0
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "agent-ctrl-cli",
3
+ "version": "0.1.0",
4
+ "description": "A centralized CLI tool for managing AI agent configurations with standard directory-based patterns.",
5
+ "author": "Ahmet Cetinkaya <ahmetcetinkaya@tutamail.com> (https://github.com/ahmet-cetinkaya)",
6
+ "license": "GPL-3.0",
7
+ "type": "module",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ahmet-cetinkaya/agent-ctrl.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/ahmet-cetinkaya/agent-ctrl/issues"
14
+ },
15
+ "homepage": "https://github.com/ahmet-cetinkaya/agent-ctrl#readme",
16
+ "keywords": [
17
+ "cli",
18
+ "agent",
19
+ "ai",
20
+ "configuration",
21
+ "mcp",
22
+ "skills"
23
+ ],
24
+ "main": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "bin": "./dist/index.js",
27
+ "files": [
28
+ "dist/",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "scripts": {
33
+ "dev": "bun run src/presentation/cli/index.ts",
34
+ "build": "bun build src/presentation/cli/index.ts --outdir dist --target node",
35
+ "build:npm": "npm: npm pack",
36
+ "start": "node dist/index.js",
37
+ "test": "bun test",
38
+ "format": "bash scripts/format.sh",
39
+ "lint": "bash scripts/lint.sh",
40
+ "lint:fix": "bash scripts/lint.sh --fix",
41
+ "release:version": "bash scripts/bump_version.sh",
42
+ "release:tag": "bash packages/acore-scripts/src/manage-git-release-tag.sh",
43
+ "release:npm": "npm publish --access public"
44
+ },
45
+ "dependencies": {
46
+ "commander": "^14.0.3"
47
+ },
48
+ "devDependencies": {
49
+ "@types/bun": "latest",
50
+ "@eslint/js": "^9.23.0",
51
+ "eslint": "^9.23.0",
52
+ "globals": "^16.0.0",
53
+ "prettier": "^3.8.1",
54
+ "typescript-eslint": "^8.28.0"
55
+ },
56
+ "peerDependencies": {
57
+ "typescript": "^5"
58
+ }
59
+ }