Docs
These docs are written for power users: short, copy/paste-friendly, and explicit about safety. Replace placeholders as you ship real chips.
Recommended local setup
PowerShell
Windows PowerShell 5.1 or PowerShell 7+. Use a dedicated profile for your automation environment.
Secrets
Keep API keys in a local .env file or your password manager. Never hardcode keys into scripts.
Rollback
Prefer chips that can be uninstalled cleanly. Always have a rollback plan for automation changes.
Copy/paste patterns
These are placeholder examples you can keep as your house style.
Install a chip (pattern)
# 1) Download and run installer (placeholder URL) iwr https://smartdatachips.com/install/chip.ps1 -UseBasicParsing | iex # 2) Install a named chip Install-DataChip -Name "chip-name" -Scope CurrentUser # 3) Verify Get-DataChip -Name "chip-name"
Uninstall a chip (pattern)
# Remove the chip and its files (planned) Uninstall-DataChip -Name "chip-name" # Optional: remove cached downloads Clear-DataChipCache
Operational safety checklist
Before you run automation
- Read what it does (and does not do)
- Confirm scopes/permissions
- Test on sample data first
- Log outputs to a file
Before you share data with AI
- Remove secrets (keys/tokens)
- Redact PII where required
- Prefer local-first transforms
- Keep an original copy
Next: wire real downloads
When you're ready, we can add a private download area, license keys, and a build pipeline (Git → Cloudflare Pages).