@mcpher/gas-fakes 2.3.8 → 2.3.10
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 +5 -0
- package/docs_discovery.json +4939 -0
- package/gf_agent/scripts/builder.js +62 -0
- package/package.json +4 -2
- package/src/cli/mcp.js +89 -232
- package/src/cli/setup.js +35 -0
- package/src/services/gmailapp/fakegmailmessage.js +102 -0
- package/src/services/gmailapp/fakegmailthread.js +17 -0
- package/summarize_advanced.js +69 -0
package/README.md
CHANGED
|
@@ -22,6 +22,9 @@ Collaborators should fork the repo and use the local versions of these files - s
|
|
|
22
22
|
## Usage
|
|
23
23
|
Just as on Apps Script, everything is executed synchronously so you don't need to bother with handling Promises/async/await. Just write normal Apps Script code. Usually you would have an associated App Script project if that's your eventual target. Just like Apps Script, you need a manifest file (appsscript.json) so you can be sure that the correct scopes are authorized and asked for.
|
|
24
24
|
|
|
25
|
+
### Natural Language Automation with `@gf_agent`
|
|
26
|
+
With the introduction of the `gf_agent` skill for Gemini CLI and the built-in MCP server, you can now automate Google Workspace tasks using natural language. This specialized agent understands the full range of `gas-fakes` services and can generate and execute code locally based on your plain English prompts. Whether it's summarizing emails in a Google Doc or analyzing spreadsheet data, you can now do it directly from your terminal using plain English. See the [gf_agent documentation](gf_agent/README.md) for more details.
|
|
27
|
+
|
|
25
28
|
> **Note on `appsscript.json`:** For full fidelity with live Apps Script, you should have a manifest available. However, as a workaround for "pure" `gas-fakes` projects where there is no intention to run in live Apps Script, if `appsscript.json` is missing or has no scopes, the runtime will automatically emulate one using the `DEFAULT_SCOPES` and `EXTRA_SCOPES` defined in your `.env` file, and will default the script's `timeZone` to `America/New_York` (or `GF_TIMEZONE`).
|
|
26
29
|
|
|
27
30
|
# gas-fakes-cli
|
|
@@ -183,6 +186,8 @@ As I mentioned earlier, to take this further, I'm going to need a lot of help to
|
|
|
183
186
|
- [gas fakes intro video](https://youtu.be/oEjpIrkYpEM)
|
|
184
187
|
- [getting started](GETTING_STARTED.md) - how to handle authentication for Workspace scopes.
|
|
185
188
|
- [readme](README.md)
|
|
189
|
+
- [Natural Language Automation with Gemini Skills & MCP Server](gemini-skills-mcp.md) - new skills-based agent approach.
|
|
190
|
+
- [gf_agent documentation](../gf_agent/README.md) - instructions for the Gemini CLI automation agent and MCP server.
|
|
186
191
|
- [gas fakes cli](gas-fakes-cli.md)
|
|
187
192
|
- [github actions using adc](https://github.com/brucemcpherson/gas-fakes-actions-adc)
|
|
188
193
|
- [github actions using dwd and wif](https://github.com/brucemcpherson/gas-fakes-actions-dwd)
|