@aramassa/ai-rules 0.4.0 → 0.4.3
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/artifact/instructions/rules/workspace-management/nodejs.md +358 -0
- package/artifact/instructions/{python/workspace-management.md → rules/workspace-management/python.md} +12 -12
- package/artifact/instructions/rules/workspace-management/typescript.md +337 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +270 -202
- package/package.json +1 -1
- package/presets/monorepo/nodejs.yaml +14 -0
- package/presets/monorepo/typescript.yaml +25 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aramassa/ai-rules",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "This repository collects guidelines and instructions for developing AI agents. It contains documents covering communication rules, coding standards, testing strategies, and general operational practices.",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"packages/extract",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
config:
|
|
2
|
+
baseDir: .github/instructions
|
|
3
|
+
|
|
4
|
+
recipe:
|
|
5
|
+
- title: Node.js Workspace Management Rules
|
|
6
|
+
frontmatter:
|
|
7
|
+
description: |
|
|
8
|
+
Rules for managing npm workspaces in a monorepo environment.
|
|
9
|
+
This includes package structure, dependency management, and build workflows.
|
|
10
|
+
applyTo: "**/package.json"
|
|
11
|
+
out: nodejs-workspace.instructions.md
|
|
12
|
+
type: package-management
|
|
13
|
+
category: workspace
|
|
14
|
+
language: nodejs
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
config:
|
|
2
|
+
baseDir: .github/instructions
|
|
3
|
+
|
|
4
|
+
recipe:
|
|
5
|
+
- title: Node.js Workspace Management Rules
|
|
6
|
+
frontmatter:
|
|
7
|
+
description: |
|
|
8
|
+
Rules for managing npm workspaces in a monorepo environment.
|
|
9
|
+
This includes package structure, dependency management, and build workflows.
|
|
10
|
+
applyTo: "**/package.json"
|
|
11
|
+
out: typescript-workspace.instructions.md
|
|
12
|
+
type: package-management
|
|
13
|
+
category: workspace
|
|
14
|
+
language: nodejs
|
|
15
|
+
- title: TypeScript Workspace Management Rules
|
|
16
|
+
mode: append
|
|
17
|
+
frontmatter:
|
|
18
|
+
description: |
|
|
19
|
+
Rules for managing TypeScript project references in a monorepo environment.
|
|
20
|
+
This includes tsconfig configuration, project references, and type definition management.
|
|
21
|
+
applyTo: "**/tsconfig.json"
|
|
22
|
+
out: typescript-workspace.instructions.md
|
|
23
|
+
type: package-management
|
|
24
|
+
category: workspace
|
|
25
|
+
language: typescript
|