@jakerdy/agentica 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.
package/package.json CHANGED
@@ -1,55 +1,58 @@
1
- {
2
- "name": "@jakerdy/agentica",
3
- "version": "0.0.6",
4
- "description": "Spec-driven framework for agent coding with developer-first approach",
5
- "keywords": [
6
- "ai",
7
- "agents",
8
- "llm",
9
- "spec-driven",
10
- "code-generation",
11
- "architecture",
12
- "cli",
13
- "developer-tools"
14
- ],
15
- "author": "Jak Erdy",
16
- "license": "MIT",
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/jakerdy/agentica.git"
20
- },
21
- "bugs": "https://github.com/jakerdy/agentica/issues",
22
- "homepage": "https://github.com/jakerdy/agentica#readme",
23
- "module": "src/index.ts",
24
- "main": "dist/cli.js",
25
- "type": "module",
26
- "bin": {
27
- "agentica": "dist/cli.js"
28
- },
29
- "files": [
30
- "dist",
31
- "prompts",
32
- "templates",
33
- "stacks",
34
- "globals",
35
- "README.md",
36
- "LICENSE"
37
- ],
38
- "scripts": {
39
- "build": "bun run build.ts",
40
- "prepublishOnly": "bun run build",
41
- "typecheck": "tsc --noEmit"
42
- },
43
- "engines": {
44
- "node": ">=18.0.0"
45
- },
46
- "devDependencies": {
47
- "@biomejs/biome": "^2.4.2",
48
- "@types/bun": "latest",
49
- "typescript": "^5"
50
- },
51
- "dependencies": {
52
- "chalk": "^5.6.2",
53
- "commander": "^14.0.3"
54
- }
55
- }
1
+ {
2
+ "name": "@jakerdy/agentica",
3
+ "version": "0.0.7",
4
+ "description": "Spec-driven framework for agent coding with developer-first approach",
5
+ "keywords": [
6
+ "ai",
7
+ "agents",
8
+ "llm",
9
+ "spec-driven",
10
+ "code-generation",
11
+ "architecture",
12
+ "cli",
13
+ "developer-tools"
14
+ ],
15
+ "author": "Jak Erdy",
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/jakerdy/agentica.git"
20
+ },
21
+ "bugs": "https://github.com/jakerdy/agentica/issues",
22
+ "homepage": "https://github.com/jakerdy/agentica#readme",
23
+ "module": "src/index.ts",
24
+ "main": "dist/cli.js",
25
+ "type": "module",
26
+ "bin": {
27
+ "agentica": "dist/cli.js"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "prompts",
32
+ "templates",
33
+ "stacks",
34
+ "globals",
35
+ "README.md",
36
+ "LICENSE"
37
+ ],
38
+ "scripts": {
39
+ "build": "bun run build.ts",
40
+ "prepublishOnly": "bun run build",
41
+ "typecheck": "tsc --noEmit",
42
+ "lint": "biome check --write",
43
+ "format": "biome format --write"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@biomejs/biome": "^2.4.2",
50
+ "@types/bun": "latest",
51
+ "typescript": "^5"
52
+ },
53
+ "dependencies": {
54
+ "chalk": "^5.6.2",
55
+ "commander": "^14.0.3",
56
+ "jsonc-parser": "^3.3.1"
57
+ }
58
+ }
@@ -40,7 +40,7 @@ $ARGUMENTS
40
40
  | Тип проекта | Локация (Scope) | Состав артефактов |
41
41
  | :--- | :--- | :--- |
42
42
  | **Single-project** | Корень (`./.agentica/`) | **[Context]** + **[Config]** + **[Specs]** |
43
- | **Monorepo** | Корень репо (`./.agentica/`) | **[Context]** + **[Config]**. **ЗАПРЕЩЕНО** создавать [Specs] здесь. |
43
+ | **Monorepo** | Корень репо (`./.agentica/`) | **[Context]** + **[Config]** + **[Specs]** |
44
44
  | **Monorepo** | Пакет (`./packages/X/.agentica/`) | **[Context]** + **[Specs]**. |
45
45
 
46
46
  ## 2. Диагностика и Выбор сценария