seedfast_windows_amd64 2.6.3 → 2.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/package.json +1 -1
- package/seedfast.exe +0 -0
package/README.md
CHANGED
|
@@ -91,6 +91,37 @@ seedfast me # Check authentication status (formerly whoami)
|
|
|
91
91
|
seedfast logout # Clear stored credentials
|
|
92
92
|
seedfast --version # Show version information
|
|
93
93
|
```
|
|
94
|
+
|
|
95
|
+
## MCP Server and Claude Code Skills
|
|
96
|
+
|
|
97
|
+
`seedfast mcp` starts a Model Context Protocol server, which lets Claude Code, Claude Desktop, Cursor, VS Code and Codex seed a database from a chat instead of a terminal. Register it in `.mcp.json`:
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"mcpServers": {
|
|
102
|
+
"seedfast": {
|
|
103
|
+
"command": "npx",
|
|
104
|
+
"args": ["-y", "seedfast@2.6.3", "mcp"],
|
|
105
|
+
"env": {
|
|
106
|
+
"SEEDFAST_API_KEY": "${SEEDFAST_API_KEY}"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Claude Code users get two more pieces. This package ships agent skills in `skills/seedfast`, which teaches Claude the tool order, how to write a seeding scope and what never to point a run at, and `skills/seedfast-setup`, which handles the install, the API key and the connection failures. Copy both into your project or your home directory:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
mkdir -p .claude/skills
|
|
117
|
+
cp -R "$(npm root -g)/seedfast/skills/seedfast" .claude/skills/
|
|
118
|
+
cp -R "$(npm root -g)/seedfast/skills/seedfast-setup" .claude/skills/
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
The Claude Code plugin at [seedfast-ai/claude-plugins](https://github.com/seedfast-ai/claude-plugins) bundles the same two skills with the MCP config and prompts for the API key at install time, so `/plugin install seedfast@seedfast` replaces all of the above once that marketplace repository is public.
|
|
122
|
+
|
|
123
|
+
Then ask for what you need in ordinary words and the right skill loads itself. `skills/seedfast/README.md` inside the package covers the personal-scope path and the Windows equivalent, and the [MCP setup guide](https://seedfa.st/docs/mcp-setup-guide) has the config block each client expects along with the full text of the seeding skill.
|
|
124
|
+
|
|
94
125
|
## CI/CD Integration
|
|
95
126
|
|
|
96
127
|
For automated database seeding in CI/CD pipelines, use API key authentication with the `--scope` flag:
|
package/package.json
CHANGED
package/seedfast.exe
CHANGED
|
Binary file
|