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
8 changes: 4 additions & 4 deletions .claude/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# IPTF Map - AI Assistant Context
# EthSystems Map - AI Assistant Context

## Project Overview

The **Institutional Privacy Task Force (IPTF) Map** is a public reference repository for privacy-preserving solutions in enterprise/institutional Ethereum adoption. Contains technical patterns, use cases, regulatory frameworks, and vendor evaluations.
The **EthSystems Map** is a public reference repository for privacy-preserving solutions in enterprise/institutional Ethereum adoption. Contains technical patterns, use cases, regulatory frameworks, and vendor evaluations.

**License:** CC0 (public domain)

Expand Down Expand Up @@ -80,11 +80,11 @@ Each directory has `_template.md` and `README.md`. Key structures:
1. Add entry to `[Unreleased]` section
2. Use semantic prefix: `feat(pattern):`, `feat(vendor):`, `fix:`, `docs:`, etc.
3. Link to the file: `[Name](path/to/file.md)`
4. Link to PR: `([#123](https://github.com/ethereum/iptf-map/pull/123))`
4. Link to PR: `([#123](https://github.com/ethsystems/map/pull/123))`

Example:
```markdown
- feat(pattern): [New pattern name](patterns/pattern-slug.md) ([#123](https://github.com/ethereum/iptf-map/pull/123))
- feat(pattern): [New pattern name](patterns/pattern-slug.md) ([#123](https://github.com/ethsystems/map/pull/123))
```

## Content Organization
Expand Down
2 changes: 1 addition & 1 deletion .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ reviews:
**Structure & frontmatter:** Validate against the template at `vendors/_template.md`.

**Ethereum alignment (CRITICAL):**
Per `vendors/README.md`, IPTF only lists vendors whose products are Ethereum-aligned.
Per `vendors/README.md`, EthSystems only lists vendors whose products are Ethereum-aligned.
Check that the product is built for or deployed on Ethereum mainnet or production L2s,
or is a multichain solution that benefits the Ethereum ecosystem (supports EIPs/ERCs,
advances shared privacy patterns, or brings institutional adoption to Ethereum).
Expand Down
2 changes: 1 addition & 1 deletion .github/markdown-link-check-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"pattern": "^approaches/approach-privacy-standards-survey\\.md$"
},
{
"pattern": "^https://github\\.com/ethereum/iptf-map/compare/"
"pattern": "^https://github\\.com/ethsystems/map/compare/"
},
{
"pattern": "^https://forum\\.l2beat\\.com/t/the-data-availability-risk-framework/318"
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pre-commit hook for IPTF Map
# Pre-commit hook for EthSystems Map
# Runs validation checks on staged markdown files

# Run lint-staged for markdown validation
Expand Down
32 changes: 16 additions & 16 deletions .vale.ini
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Vale prose linter configuration for IPTF Map
# Vale prose linter configuration for EthSystems Map
# See https://vale.sh/docs/topics/config/

StylesPath = .vale/styles

MinAlertLevel = suggestion

[*.md]
BasedOnStyles = IPTF
BasedOnStyles = EthSystems

# Skip code blocks and frontmatter
BlockIgnores = (?s) *```.*?```
TokenIgnores = (`[^`]+`)

# Content directories - full linting
[patterns/*.md]
BasedOnStyles = IPTF
BasedOnStyles = EthSystems
# Skip template and README
Skip = _template.md, README.md
# Disable overly strict rules for technical documentation
Expand All @@ -23,53 +23,53 @@ write-good.TooWordy = NO
write-good.Passive = suggestion

[vendors/*.md]
BasedOnStyles = IPTF,
BasedOnStyles = EthSystems,
Skip = _template.md, README.md
write-good.E-Prime = NO
write-good.TooWordy = NO
write-good.Passive = suggestion

[approaches/*.md]
BasedOnStyles = IPTF,
BasedOnStyles = EthSystems,
Skip = _template.md, README.md
write-good.E-Prime = NO
write-good.TooWordy = NO
write-good.Passive = suggestion

[use-cases/*.md]
BasedOnStyles = IPTF,
BasedOnStyles = EthSystems,
Skip = _template.md, README.md
write-good.E-Prime = NO
write-good.TooWordy = NO
write-good.Passive = suggestion

[jurisdictions/*.md]
BasedOnStyles = IPTF,
BasedOnStyles = EthSystems,
Skip = _template.md, README.md
write-good.E-Prime = NO
write-good.TooWordy = NO
write-good.Passive = suggestion

[domains/*.md]
BasedOnStyles = IPTF,
BasedOnStyles = EthSystems,
Skip = _template.md, README.md
write-good.E-Prime = NO
write-good.TooWordy = NO
write-good.Passive = suggestion

# Lighter linting for root docs
[README.md]
BasedOnStyles = IPTF
IPTF.Hedging = NO
BasedOnStyles = EthSystems
EthSystems.Hedging = NO

[GLOSSARY.md]
BasedOnStyles = IPTF
IPTF.Marketing = NO
IPTF.Hedging = NO
BasedOnStyles = EthSystems
EthSystems.Marketing = NO
EthSystems.Hedging = NO

[CONTRIBUTING.md]
BasedOnStyles = IPTF
IPTF.Hedging = NO
BasedOnStyles = EthSystems
EthSystems.Hedging = NO

[CHANGELOG.md]
BasedOnStyles = IPTF
BasedOnStyles = EthSystems
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IPTF AI Hedging Language Detector
# EthSystems AI Hedging Language Detector
# Catches non-committal language often produced by LLMs
# Technical docs should be precise and confident

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IPTF Marketing Language Detector
# EthSystems Marketing Language Detector
# Catches promotional/marketing language that should not appear in technical docs
# Mirrors patterns from .marketing-exceptions.txt

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IPTF Terminology Consistency
# EthSystems Terminology Consistency
# Enforces canonical spellings from GLOSSARY.md
# See also: scripts/check-terminology.js for programmatic checking

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IPTF Accepted Vocabulary
# EthSystems Accepted Vocabulary
# Technical terms from GLOSSARY.md and blockchain domain

# Core privacy concepts
Expand Down
Loading
Loading