
Security News
Anthropic Identifies Biased Reasoning and Recklessness as Drivers of Claude’s PyPI Attack
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.
seedfast_linux_arm64
Advanced tools
AI-powered PostgreSQL database seeding tool
Seedfast CLI generates realistic test data for PostgreSQL databases. It connects to a backend service that uses AI to understand your database schema and create meaningful, contextually appropriate seed data.
# Global installation
npm install -g seedfast
# Or use with npx (no installation required)
npx seedfast seed
brew install argon-it/tap/seedfast
Download the latest release for your platform from https://download.seedfa.st/seedfast/latest/. Pinned versions are available at https://download.seedfa.st/seedfast/v<version>/<artifact> (for example https://download.seedfa.st/seedfast/latest/seedfast_Darwin_arm64.tar.gz).
Requires Go 1.25+:
git clone <repository-url>
cd cli
go build -o seedfast
seedfast login
Opens your browser for authentication. The CLI waits until you complete the login.
seedfast connect
Enter your PostgreSQL connection string:
postgres://user:password@localhost:5432/dbname?sslmode=disable
seedfast seed
The CLI will:
seedfast login # Authenticate with the backend service
seedfast connect # Configure database connection
seedfast seed # Start the seeding process
seedfast me # Check authentication status (formerly whoami)
seedfast logout # Clear stored credentials
seedfast --version # Show version information
For automated database seeding in CI/CD pipelines, use API key authentication with the --scope flag:
export SEEDFAST_API_KEY=sfk_live_your_api_key_here
seedfast seed --scope "test database" --output json
GitHub Actions Example:
- name: Seed Database
env:
SEEDFAST_API_KEY: ${{ secrets.SEEDFAST_API_KEY }}
run: |
curl -L https://cli.seedfa.st/install.sh | sh
seedfast seed --scope "development database" --output json
For complete CI/CD integration guide with examples for GitHub Actions, GitLab CI, CircleCI, and Jenkins, see docs/cicd/README.md.
SEEDFAST_DSN - PostgreSQL connection string (overrides stored value)DATABASE_URL - Alternative PostgreSQL connection string (fallback)SEEDFAST_VERBOSE - Enable verbose logging (1 to enable)You can configure the database connection in three ways (in order of priority):
SEEDFAST_DSNDATABASE_URLseedfast connect command (saved in OS keychain)# Check current auth status
seedfast me
# Re-authenticate
seedfast logout
seedfast login
# Reconfigure connection
seedfast connect
# Or set via environment variable
export SEEDFAST_DSN="postgres://user:password@localhost:5432/dbname?sslmode=disable"
export SEEDFAST_VERBOSE=1
seedfast seed
For local development and testing with custom backends, see docs/development/README_LOCAL_DEV.md.
Quick summary:
go build -tags dev): Support --backend-url and --grpc-url flags for local testingapp schemaSeedfast automatically detects and uses the best available backend on Linux:
For WSL users: File storage is automatically used. No additional setup required.
For detailed Linux keyring setup and troubleshooting, see the "Linux Keyring Setup" section in docs/INSTALL.md.
This is a private repository. For contributions, please contact the maintainers.
See LICENSE file for details.
FAQs
AI-powered PostgreSQL database seeding tool
We found that seedfast_linux_arm64 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.