@aramassa/ai-rules 0.6.0 → 0.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aramassa/ai-rules",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
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,18 @@
1
+ description: GitHub Actionsのテストワークフローを実装するための設定です。
2
+
3
+ recipe:
4
+ - import: :basic
5
+ - title: GitHub Actions Test Workflow Rules
6
+ frontmatter:
7
+ "@type": true
8
+ "@category": true
9
+ "@focus": true
10
+ description: |
11
+ Implementation rules for test workflows with GitHub Actions.
12
+ Covers workflow triggers, Node.js version matrix, build and test execution order,
13
+ and comprehensive validation including build artifact verification.
14
+ applyTo: ".github/workflows/*.{yml,yaml}"
15
+ out: ./.github/instructions/github-actions-test.instructions.md
16
+ type: test
17
+ category: github-actions
18
+ focus: test-workflow