git clone https://github.com/Intense-Visions/harness-engineering
T=$(mktemp -d) && git clone --depth=1 https://github.com/Intense-Visions/harness-engineering "$T" && mkdir -p ~/.claude/skills && cp -r "$T/agents/skills/claude-code/add-harness-component" ~/.claude/skills/intense-visions-harness-engineering-add-harness-component-ac12fc && rm -rf "$T"
agents/skills/claude-code/add-harness-component/SKILL.mdAdd Harness Component
Add layers, documentation, components, or skills to an existing harness project with proper integration. Validate against existing constraints, wire into architecture, and verify the result.
When to Use
- Adding a new layer to the project's architecture
- Adding a new documentation file that harness should track
- Adding a new component (module, service, package) that must be wired into existing layer boundaries
- Adding a new skill to the project's skill library
- When a plan calls for introducing a new architectural boundary or module
- NOT when initializing a project from scratch (use initialize-harness-project)
- NOT when modifying an existing component (use standard editing workflows)
- NOT when removing components (manual process — removing requires careful dependency analysis)
Process
Phase 1: DETERMINE — Identify What to Add
-
Clarify the component type. Ask if not obvious from context:
- Layer: A new architectural boundary (e.g., adding an "infrastructure" layer to a project that only has "business" and "data")
- Document: A documentation file that harness should track for drift detection (e.g., API docs, architecture decision records)
- Component: A code module, service, or package that lives within an existing layer
- Skill: A new harness skill definition for the project's workflow
-
Gather requirements. For each type:
- Layer: Name, which directories belong to it, which layers it can import from, which layers can import from it
- Document: Path, what it documents, which code files it relates to
- Component: Name, which layer it belongs to, what it depends on, what will depend on it
- Skill: Name, purpose, type (rigid or flexible), triggers
-
Check prerequisites. The project must already be initialized with harness. If
does not exist, stop and run initialize-harness-project first.harness.config.json
Phase 2: VALIDATE — Check Against Existing Constraints
-
Read the current configuration. Load
andharness.config.json
to understand existing layers, constraints, and architecture.AGENTS.md -
Verify the new component does not conflict:
- Does the layer name already exist?
- Does the component directory already exist?
- Would the new dependency relationships create circular imports?
- Does the component violate any existing forbidden-import rules?
-
If conflicts are found, report them clearly: "Adding layer X would conflict with existing layer Y because [reason]. Options: [A] rename, [B] merge into existing layer, [C] restructure. Which do you prefer?"
-
Run
on the current state to establish a clean baseline. If it already fails, fix existing violations before adding new components.harness check-deps
Phase 3: ADD — Create the Component
-
Run
with appropriate arguments:harness add- Layer:
harness add layer <name> --dirs <dir1,dir2> --imports <allowed-layers> - Document:
harness add doc <path> --tracks <related-code-paths> - Component:
harness add component <name> --layer <layer-name> - Skill:
harness add skill <name> --type <rigid|flexible>
- Layer:
-
Review generated files and configuration changes.
modifiesharness add
and may generate template files. Check that the changes look correct.harness.config.json -
Create the actual code or content.
creates the configuration entry but not necessarily the implementation. Create the directories, files, and initial code as needed.harness add
Phase 4: WIRE — Integrate into Architecture
-
Update imports and exports. If the new component needs to be imported by existing code, add the imports. If existing code needs to be aware of the new layer, update barrel files or index modules.
-
Update
. Add the new component to the architecture section. Document its purpose, boundaries, and relationships to other components. This keeps agent instructions accurate.AGENTS.md -
Update layer configuration if the new component changes dependency relationships. Ensure
reflects the actual import graph.harness.config.json -
For new skills: Write the
andskill.yaml
files following the harness skill format. Use harness-skill-authoring for guidance on writing good skill content.SKILL.md
Phase 5: VERIFY — Confirm Integration
-
Run
to verify the full project configuration is still valid after the addition.harness validate -
Run
to verify no dependency violations were introduced. The new component's imports must respect layer boundaries.harness check-deps
Graph Refresh
If a knowledge graph exists at
.harness/graph/, refresh it after code changes to keep graph queries accurate:
harness scan [path]
Skipping this step means subsequent graph queries (impact analysis, dependency health, test advisor) may return stale results.
-
If validation fails, fix the issues before committing. Common causes:
- New layer not properly registered in
harness.config.json - Component placed in wrong directory for its declared layer
- Imports from forbidden layers
references outdated architectureAGENTS.md
- New layer not properly registered in
-
Commit the addition. All new and modified files in a single atomic commit.
Harness Integration
— Register a new architectural layer with directory mappings and import rules.harness add layer <name>
— Register a documentation file for drift tracking.harness add doc <path>
— Register a new code component within an existing layer.harness add component <name> --layer <layer>
— Scaffold a new skill definition.harness add skill <name> --type <type>
— Verify project configuration after the addition.harness validate
— Verify dependency constraints are respected after the addition.harness check-deps
Success Criteria
- The new component is properly registered in
harness.config.json - The component's files exist in the correct directories for its declared layer
is updated to reflect the new componentAGENTS.md
passes after the additionharness validate
passes after the addition (no new violations)harness check-deps- No circular dependencies were introduced
- The addition is committed as a single atomic commit
Rationalizations to Reject
| Rationalization | Why It Is Wrong |
|---|---|
| "I will add the component and fix any constraint violations later" | Phase 2 requires running harness check-deps for a clean baseline BEFORE adding. Phase 5 requires it to pass AFTER adding. |
| "AGENTS.md does not need updating for a small internal component" | Phase 4 explicitly requires updating AGENTS.md for every new component. Without it, AI agents have no context. |
| "The new layer imports are obvious, so I do not need to check for circularity" | Phase 2 checks whether new dependency relationships create circular imports. Circular dependencies are invisible until they cause runtime failures. |
| "I will commit the config change and the code separately for cleaner history" | The success criteria require a single atomic commit. Splitting creates a window where config references a nonexistent component. |
Examples
Example: Adding a New Layer
Human: "We need an infrastructure layer for external API clients." DETERMINE: Adding a layer. Name: infrastructure. Dirs: src/infrastructure/. Imports from: (none — infrastructure is a leaf layer, no internal dependencies). Imported by: business layer (services call external APIs through infrastructure). VALIDATE: Read harness.config.json — existing layers: presentation, business, data. No conflict with "infrastructure" name. Run: harness check-deps — passes (clean baseline). ADD: harness add layer infrastructure --dirs src/infrastructure --imports none mkdir -p src/infrastructure WIRE: Update harness.config.json: allow business → infrastructure imports. Update AGENTS.md: document infrastructure layer purpose and boundaries. VERIFY: harness validate # Pass harness check-deps # Pass git add harness.config.json AGENTS.md src/infrastructure/ git commit -m "feat: add infrastructure layer for external API clients"
Example: Adding a Document for Drift Tracking
Human: "Track our API specification for documentation drift." DETERMINE: Adding a document. Path: docs/api-spec.md. Tracks: src/routes/, src/models/response.ts. ADD: harness add doc docs/api-spec.md --tracks src/routes,src/models/response.ts WIRE: Update AGENTS.md: note that docs/api-spec.md is tracked for drift. VERIFY: harness validate # Pass git add harness.config.json AGENTS.md git commit -m "feat: track API spec for documentation drift detection"
Example: Adding a Component to an Existing Layer
Human: "Add a notification service to the business layer." DETERMINE: Adding a component. Name: notification-service. Layer: business. Depends on: data layer (notification repository). Depended on by: presentation layer (routes). VALIDATE: Read harness.config.json — business layer exists, maps to src/services/. No existing notification-service directory. business → data is an allowed import. Presentation → business is allowed. Run: harness check-deps — passes. ADD: harness add component notification-service --layer business Create src/services/notification-service.ts Create src/services/notification-service.test.ts WIRE: Add export to src/services/index.ts (if barrel file exists). Update AGENTS.md: add notification service to business layer component list. VERIFY: harness validate # Pass harness check-deps # Pass git add harness.config.json AGENTS.md src/services/notification-service.* git commit -m "feat: add notification service to business layer"