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 .changeset/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changesets

This folder is managed by `@changesets/cli`. Use it to record release notes,
version `@block/madrigal`, and publish the package to npm.
version `@anarchitecture/madrigal`, and publish the package to npm.

Common workflow:

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @block/madrigal
# @anarchitecture/madrigal

## 0.1.0

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Inspired by [Style Dictionary](https://amzn.github.io/style-dictionary/), Madrig
## Quick Start

```bash
npm install @block/madrigal
npm install @anarchitecture/madrigal
```

Create a `madrigal.config.yaml`:
Expand Down Expand Up @@ -52,7 +52,7 @@ All text must meet WCAG 2.1 AA contrast requirements:
Build programmatically:

```typescript
import { build } from '@block/madrigal';
import { build } from '@anarchitecture/madrigal';

const result = await build();

Expand Down Expand Up @@ -146,7 +146,7 @@ Markdown body content here.
### Custom Formats

```typescript
import { defaultRegistry, type Format } from '@block/madrigal';
import { defaultRegistry, type Format } from '@anarchitecture/madrigal';

const myFormat: Format = {
name: 'custom-html',
Expand All @@ -164,7 +164,7 @@ defaultRegistry.register(myFormat);
Preprocessors transform knowledge units after loading but before compilation:

```typescript
import { defaultPreprocessorRegistry, type Preprocessor } from '@block/madrigal';
import { defaultPreprocessorRegistry, type Preprocessor } from '@anarchitecture/madrigal';

const enricher: Preprocessor = {
name: 'tag-enricher',
Expand Down Expand Up @@ -211,7 +211,7 @@ Start a stdio MCP server that exposes five tools for querying the knowledge base
`search_knowledge`, `get_knowledge_unit`, `list_knowledge_units`, `get_brand_rules`, `review_content`.

```typescript
import { serveMcp } from '@block/madrigal';
import { serveMcp } from '@anarchitecture/madrigal';
import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@block/madrigal",
"name": "@anarchitecture/madrigal",
"version": "0.1.0",
"description": "A config-driven, pluggable knowledge compiler inspired by Style Dictionary",
"license": "Apache-2.0",
Expand Down
Loading