Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Project Overview

Gatekeeper is a PowerShell module for implementing feature flags in PowerShell projects. It uses JSON-based feature flag definitions with a rule-based evaluation system to control feature rollouts based on device context.

Check warning on line 7 in CLAUDE.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (rollouts) Suggestions: (rollout, rollo's, Rollo's, rollo, rolls)

The module leverages JSON schemas to enforce structure and uses PowerShell classes to model the core concepts: PropertySets, FeatureFlags, Rules, ConditionGroups, and Effects.

Expand Down Expand Up @@ -56,7 +56,7 @@
- **Classes/**: PowerShell class definitions (Property.ps1, FeatureFlag.ps1)
- **Enums/**: Enumeration definitions (Effect.ps1)
- **Public/**: Exported functions (Test-FeatureFlag, New-FeatureFlag, etc.)
- **Private/**: Internal helper functions (Convert-ToTypeValue, Test-TypedValue)
- **Private/**: Internal helper functions (Convert-ToTypedValue)
- **Schemas/**: JSON schemas for validation (FeatureFlag.json, Properties.json)
- **Configuration.psd1**: Default module configuration
- **Gatekeeper.psm1**: Module loader that dot-sources all functions and registers type accelerators
Expand Down Expand Up @@ -104,8 +104,8 @@

The module uses custom ArgumentTransformationAttributes to automatically convert input:

- `[FeatureFlagTransformAttribute()]`: Converts hashtables, file paths, or JSON strings to FeatureFlag objects

Check warning on line 107 in CLAUDE.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (hashtables) Suggestions: (hashables, hashtable, hashable, hatable, hashtags)
- `[PropertySetTransformAttribute()]`: Converts hashtables to PropertySet objects

Check warning on line 108 in CLAUDE.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (hashtables) Suggestions: (hashables, hashtable, hashable, hatable, hashtags)

## Configuration System

Expand Down
46 changes: 0 additions & 46 deletions Gatekeeper/Private/Test-TypedValue.ps1

This file was deleted.

81 changes: 0 additions & 81 deletions tests/Test-TypedValue.tests.ps1

This file was deleted.

Loading