agentic-code 0.6.2 → 0.6.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/.agents/skills/ai-development-guide/SKILL.md +1 -3
- package/.agents/skills/coding-rules/SKILL.md +1 -3
- package/.agents/skills/documentation-criteria/SKILL.md +1 -3
- package/.agents/skills/implementation-approach/SKILL.md +1 -3
- package/.agents/skills/integration-e2e-testing/SKILL.md +1 -3
- package/.agents/skills/metacognition/SKILL.md +1 -3
- package/.agents/skills/testing/SKILL.md +1 -3
- package/.agents/skills/testing-strategy/SKILL.md +1 -3
- package/package.json +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ai-development-guide
|
|
3
|
-
description:
|
|
4
|
-
Detects code smells, anti-patterns, and debugging issues. Guides fail-fast design and implementation completeness.
|
|
5
|
-
Use when: fixing bugs, reviewing code quality, refactoring, or detecting code smells.
|
|
3
|
+
description: "Detects code smells, anti-patterns, and debugging issues. Use when: fixing bugs, reviewing code quality, or refactoring."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# AI Developer Guide
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: coding-rules
|
|
3
|
-
description:
|
|
4
|
-
Applies coding standards for clean, maintainable code. Covers functions, error handling, and refactoring techniques.
|
|
5
|
-
Use when: writing functions, handling errors, refactoring, or reviewing code style.
|
|
3
|
+
description: "Applies coding standards for clean, maintainable code. Use when: writing functions, handling errors, refactoring, or reviewing code style."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Development Rules
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: documentation-criteria
|
|
3
|
-
description:
|
|
4
|
-
Guides PRD, ADR, Design Doc, and Work Plan creation with templates and decision matrix.
|
|
5
|
-
Use when: planning features, writing specs, creating technical documents, or deciding which docs are needed.
|
|
3
|
+
description: "Guides PRD, ADR, Design Doc, and Work Plan creation. Use when: planning features, writing specs, or creating technical documents."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Documentation Creation Criteria
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: implementation-approach
|
|
3
|
-
description:
|
|
4
|
-
Selects implementation strategy (vertical slice, horizontal slice, or hybrid) with risk assessment.
|
|
5
|
-
Use when: planning how to build a feature, deciding development approach, or defining verification levels.
|
|
3
|
+
description: "Selects implementation strategy (vertical/horizontal/hybrid) with risk assessment. Use when: planning features or deciding development approach."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Implementation Strategy Selection Framework (Meta-cognitive Approach)
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: integration-e2e-testing
|
|
3
|
-
description:
|
|
4
|
-
Designs integration and E2E tests with mock boundaries and behavior verification rules.
|
|
5
|
-
Use when: writing E2E tests, integration tests, test skeletons, or reviewing test quality.
|
|
3
|
+
description: "Designs integration and E2E tests with mock boundaries. Use when: writing E2E tests, integration tests, or reviewing test quality."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Integration Test & E2E Test Design/Implementation Rules
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: metacognition
|
|
3
|
-
description:
|
|
4
|
-
Validates approach and checks assumptions before and after tasks. Provides self-assessment protocol.
|
|
5
|
-
Use when: starting new work, encountering errors, completing tasks, or switching between phases.
|
|
3
|
+
description: "Validates approach and checks assumptions before/after tasks. Use when: starting work, encountering errors, or switching phases."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Metacognition Protocol
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: testing
|
|
3
|
-
description:
|
|
4
|
-
Applies TDD process, test quality criteria, and mock usage guidelines. Covers unit, integration, and E2E tests.
|
|
5
|
-
Use when: writing unit tests, using mocks, reviewing test quality, or ensuring test coverage.
|
|
3
|
+
description: "Applies TDD process, test quality criteria, and mock guidelines. Use when: writing unit tests, using mocks, or reviewing test quality."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Testing Rules
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: testing-strategy
|
|
3
|
-
description:
|
|
4
|
-
Prioritizes which tests to write based on ROI calculation and critical user journeys.
|
|
5
|
-
Use when: deciding test coverage, selecting test types, or budgeting test effort.
|
|
3
|
+
description: "Prioritizes tests based on ROI and critical user journeys. Use when: deciding test coverage, selecting test types, or budgeting effort."
|
|
6
4
|
---
|
|
7
5
|
|
|
8
6
|
# Test Strategy: ROI-Based Selection
|