- Is Gnaw free? Do I need an account?
- Gnaw is free and needs no login. You describe the automation in plain English, pass a quick human check, and get a working Google Apps Script file back. There is no signup, no credit card, and no usage cap for normal use.
- Where does my prompt and data go?
- Your prompt is sent to bulldo.gs only to generate the script text — we don't ask for, receive, or store the contents of your Gmail, Sheets, or Drive. The generated script runs entirely inside your own Google account under permissions you approve; bulldo.gs is never in the data path once the code is in your editor.
- Do I need to know how to code?
- No. Gnaw and every BullPack ship readable, commented .gs files. For packs, the only file you normally touch is Config.gs — you fill in a few values (a sheet ID, a label name) and run it. If you can copy, paste, and click Run, you can use it.
- Is the generated code safe to run?
- Every script is plain, readable Apps Script that runs in your own Google account — no third-party server, no data leaves Google. Read it before you run it (it's short and commented), and Google will show you exactly which permissions it needs the first time you run it. Nothing runs until you approve those scopes.
- What permissions (scopes) will Apps Script ask for?
- Only the ones the script actually uses. A Gmail script asks for Gmail access; a Sheets script asks for spreadsheet access. The first run shows Google’s consent screen listing each scope. If a script asks for something that doesn’t match what it claims to do, don’t approve it.
- What's the difference between Gnaw and a BullPack?
- Gnaw generates a single script for one specific task, on demand and for free. A BullPack is a curated, production-grade multi-file project for a recurring job — with a Config file, an orchestrator, and smoke tests — that you buy once and install. Use Gnaw for a quick one-off; use a pack when you want a maintained, tested solution.