Skip to content

Commit 9b2c361

Browse files
authored
feat: add very_good_ai_flutter_plugin to the list of plugins (#1)
1 parent afdf0d9 commit 9b2c361

4 files changed

Lines changed: 62 additions & 4 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,25 @@
22
"name": "Very Good Claude Marketplace",
33
"owner": {
44
"name": "Very Good Ventures",
5-
"email": "hello@verygood.ventures"
5+
"email": "hello@verygood.ventures",
6+
"url": "https://verygood.ventures"
67
},
78
"metadata": {
8-
"description": "Official VGV public Claude Code marketplace",
9+
"description": "Official VGV Claude Code marketplace",
910
"version": "1.0.0"
1011
},
11-
"plugins": []
12+
"plugins": [
13+
{
14+
"name": "very-good-ai-flutter-plugin",
15+
"description": "Claude Code plugin to enhance and accelerate Flutter & Dart development, built by Very Good Ventures",
16+
"version": "0.0.1",
17+
"homepage": "https://github.com/VeryGoodOpenSource/very_good_ai_flutter_plugin",
18+
"email": "hello@verygood.ventures",
19+
"author": {
20+
"name": "Very Good Ventures",
21+
"email": "hello@verygood.ventures",
22+
"url": "https://verygood.ventures"
23+
}
24+
}
25+
]
1226
}

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
spelling:
10+
name: ✍️ Spelling Check
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Spell Check
15+
uses: streetsidesoftware/cspell-action@v6
16+
with:
17+
files: '**/*.md'
18+
config: 'config/cspell.json'

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
11
# Very Good Claude Marketplace
22

3-
A curated registry of Claude Code plugins built and maintained by Very Good Ventures.
3+
[![Very Good Ventures][logo_white]][very_good_ventures_link_dark]
4+
[![Very Good Ventures][logo_black]][very_good_ventures_link_light]
5+
6+
A curated registry of [Claude Code][claude_code_link] plugins built and maintained by [Very Good Ventures][vgv_link].
7+
8+
Developed with 💙 by [Very Good Ventures][vgv_link] 🦄
9+
10+
## Adding the marketplace
11+
12+
Inside Claude:
13+
14+
```bash
15+
/plugin marketplace add VeryGoodOpenSource/very_good_claude_marketplace
16+
/plugin install very_good_ai_flutter_plugin
17+
```
18+
19+
[claude_code_link]: https://claude.ai/code
20+
[vgv_link]: https://verygood.ventures
21+
[very_good_ventures_link_dark]: https://verygood.ventures#gh-dark-mode-only
22+
[very_good_ventures_link_light]: https://verygood.ventures#gh-light-mode-only
23+
[logo_black]: https://raw.githubusercontent.com/VGVentures/very_good_brand/main/styles/README/vgv_logo_black.png#gh-light-mode-only
24+
[logo_white]: https://raw.githubusercontent.com/VGVentures/very_good_brand/main/styles/README/vgv_logo_white.png#gh-dark-mode-only

config/cspell.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"language": "en",
3+
"words": [],
4+
"flagWords": []
5+
}

0 commit comments

Comments
 (0)