Skip to content
Open
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
1 change: 0 additions & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "ponytail",
"description": "Lazy senior dev mode for AI agents. The best code is the code you never wrote.",
"owner": {
Expand Down
9 changes: 9 additions & 0 deletions tests/package.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,12 @@ test('npm package ships the advertised cleanup script', () => {
'scripts/uninstall.js is listed in files but missing on disk',
);
});

test('Claude marketplace manifest does not depend on an external schema URL', () => {
const marketplace = JSON.parse(fs.readFileSync(path.join(root, '.claude-plugin', 'marketplace.json'), 'utf8'));
assert.equal(
Object.hasOwn(marketplace, '$schema'),
false,
'Claude Desktop marketplace sync fails when $schema points at an unreachable external URL',
);
});
Loading