gitextract_nx_35fca/ ├── .agent/ │ ├── skills/ │ │ └── vhs.md │ └── workflows/ │ └── verify-skills.md ├── .changeset/ │ ├── README.md │ └── config.json ├── .claude/ │ └── settings.json ├── .gemini/ │ ├── config.yaml │ └── style_guide.md ├── .github/ │ ├── CODEOWNERS │ ├── PULL_REQUEST_TEMPLATE.md │ ├── labeler.yml │ └── workflows/ │ ├── automation.yml │ ├── ci.yml │ ├── cla.yml │ ├── coverage.yml │ ├── generate-skills.yml │ ├── policy.yml │ ├── publish-skills.yml │ ├── release-changesets.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTEXT.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── art/ │ ├── features.txt │ ├── intro.txt │ ├── outro.txt │ ├── qr.txt │ ├── scene1.txt │ ├── scene2.txt │ ├── scene2b.txt │ ├── scene3.txt │ ├── scene3b.txt │ ├── scene4.txt │ ├── scene5.txt │ ├── scene6.txt │ ├── scene7.txt │ ├── scene8.txt │ └── scene9.txt ├── dist-workspace.toml ├── docs/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── demo.tape │ └── skills.md ├── flake.nix ├── gemini-extension.json ├── lefthook.yml ├── package.json ├── registry/ │ ├── personas.yaml │ └── recipes.yaml ├── scripts/ │ ├── coverage.sh │ ├── show-art.sh │ ├── tag-release.sh │ └── version-sync.sh ├── skills/ │ ├── gws-admin-reports/ │ │ └── SKILL.md │ ├── gws-calendar/ │ │ └── SKILL.md │ ├── gws-calendar-agenda/ │ │ └── SKILL.md │ ├── gws-calendar-insert/ │ │ └── SKILL.md │ ├── gws-chat/ │ │ └── SKILL.md │ ├── gws-chat-send/ │ │ └── SKILL.md │ ├── gws-classroom/ │ │ └── SKILL.md │ ├── gws-docs/ │ │ └── SKILL.md │ ├── gws-docs-write/ │ │ └── SKILL.md │ ├── gws-drive/ │ │ └── SKILL.md │ ├── gws-drive-upload/ │ │ └── SKILL.md │ ├── gws-events/ │ │ └── SKILL.md │ ├── gws-events-renew/ │ │ └── SKILL.md │ ├── gws-events-subscribe/ │ │ └── SKILL.md │ ├── gws-forms/ │ │ └── SKILL.md │ ├── gws-gmail/ │ │ └── SKILL.md │ ├── gws-gmail-forward/ │ │ └── SKILL.md │ ├── gws-gmail-read/ │ │ └── SKILL.md │ ├── gws-gmail-reply/ │ │ └── SKILL.md │ ├── gws-gmail-reply-all/ │ │ └── SKILL.md │ ├── gws-gmail-send/ │ │ └── SKILL.md │ ├── gws-gmail-triage/ │ │ └── SKILL.md │ ├── gws-gmail-watch/ │ │ └── SKILL.md │ ├── gws-keep/ │ │ └── SKILL.md │ ├── gws-meet/ │ │ └── SKILL.md │ ├── gws-modelarmor/ │ │ └── SKILL.md │ ├── gws-modelarmor-create-template/ │ │ └── SKILL.md │ ├── gws-modelarmor-sanitize-prompt/ │ │ └── SKILL.md │ ├── gws-modelarmor-sanitize-response/ │ │ └── SKILL.md │ ├── gws-people/ │ │ └── SKILL.md │ ├── gws-shared/ │ │ └── SKILL.md │ ├── gws-sheets/ │ │ └── SKILL.md │ ├── gws-sheets-append/ │ │ └── SKILL.md │ ├── gws-sheets-read/ │ │ └── SKILL.md │ ├── gws-slides/ │ │ └── SKILL.md │ ├── gws-tasks/ │ │ └── SKILL.md │ ├── gws-workflow/ │ │ └── SKILL.md │ ├── gws-workflow-email-to-task/ │ │ └── SKILL.md │ ├── gws-workflow-file-announce/ │ │ └── SKILL.md │ ├── gws-workflow-meeting-prep/ │ │ └── SKILL.md │ ├── gws-workflow-standup-report/ │ │ └── SKILL.md │ ├── gws-workflow-weekly-digest/ │ │ └── SKILL.md │ ├── persona-content-creator/ │ │ └── SKILL.md │ ├── persona-customer-support/ │ │ └── SKILL.md │ ├── persona-event-coordinator/ │ │ └── SKILL.md │ ├── persona-exec-assistant/ │ │ └── SKILL.md │ ├── persona-hr-coordinator/ │ │ └── SKILL.md │ ├── persona-it-admin/ │ │ └── SKILL.md │ ├── persona-project-manager/ │ │ └── SKILL.md │ ├── persona-researcher/ │ │ └── SKILL.md │ ├── persona-sales-ops/ │ │ └── SKILL.md │ ├── persona-team-lead/ │ │ └── SKILL.md │ ├── recipe-backup-sheet-as-csv/ │ │ └── SKILL.md │ ├── recipe-batch-invite-to-event/ │ │ └── SKILL.md │ ├── recipe-block-focus-time/ │ │ └── SKILL.md │ ├── recipe-bulk-download-folder/ │ │ └── SKILL.md │ ├── recipe-collect-form-responses/ │ │ └── SKILL.md │ ├── recipe-compare-sheet-tabs/ │ │ └── SKILL.md │ ├── recipe-copy-sheet-for-new-month/ │ │ └── SKILL.md │ ├── recipe-create-classroom-course/ │ │ └── SKILL.md │ ├── recipe-create-doc-from-template/ │ │ └── SKILL.md │ ├── recipe-create-events-from-sheet/ │ │ └── SKILL.md │ ├── recipe-create-expense-tracker/ │ │ └── SKILL.md │ ├── recipe-create-feedback-form/ │ │ └── SKILL.md │ ├── recipe-create-gmail-filter/ │ │ └── SKILL.md │ ├── recipe-create-meet-space/ │ │ └── SKILL.md │ ├── recipe-create-presentation/ │ │ └── SKILL.md │ ├── recipe-create-shared-drive/ │ │ └── SKILL.md │ ├── recipe-create-task-list/ │ │ └── SKILL.md │ ├── recipe-create-vacation-responder/ │ │ └── SKILL.md │ ├── recipe-draft-email-from-doc/ │ │ └── SKILL.md │ ├── recipe-email-drive-link/ │ │ └── SKILL.md │ ├── recipe-find-free-time/ │ │ └── SKILL.md │ ├── recipe-find-large-files/ │ │ └── SKILL.md │ ├── recipe-forward-labeled-emails/ │ │ └── SKILL.md │ ├── recipe-generate-report-from-sheet/ │ │ └── SKILL.md │ ├── recipe-label-and-archive-emails/ │ │ └── SKILL.md │ ├── recipe-log-deal-update/ │ │ └── SKILL.md │ ├── recipe-organize-drive-folder/ │ │ └── SKILL.md │ ├── recipe-plan-weekly-schedule/ │ │ └── SKILL.md │ ├── recipe-post-mortem-setup/ │ │ └── SKILL.md │ ├── recipe-reschedule-meeting/ │ │ └── SKILL.md │ ├── recipe-review-meet-participants/ │ │ └── SKILL.md │ ├── recipe-review-overdue-tasks/ │ │ └── SKILL.md │ ├── recipe-save-email-attachments/ │ │ └── SKILL.md │ ├── recipe-save-email-to-doc/ │ │ └── SKILL.md │ ├── recipe-schedule-recurring-event/ │ │ └── SKILL.md │ ├── recipe-send-team-announcement/ │ │ └── SKILL.md │ ├── recipe-share-doc-and-notify/ │ │ └── SKILL.md │ ├── recipe-share-event-materials/ │ │ └── SKILL.md │ ├── recipe-share-folder-with-team/ │ │ └── SKILL.md │ ├── recipe-sync-contacts-to-sheet/ │ │ └── SKILL.md │ └── recipe-watch-drive-changes/ │ └── SKILL.md ├── src/ │ ├── auth.rs │ ├── auth_commands.rs │ ├── client.rs │ ├── commands.rs │ ├── credential_store.rs │ ├── discovery.rs │ ├── error.rs │ ├── executor.rs │ ├── formatter.rs │ ├── fs_util.rs │ ├── generate_skills.rs │ ├── helpers/ │ │ ├── README.md │ │ ├── calendar.rs │ │ ├── chat.rs │ │ ├── docs.rs │ │ ├── drive.rs │ │ ├── events/ │ │ │ ├── mod.rs │ │ │ ├── renew.rs │ │ │ └── subscribe.rs │ │ ├── gmail/ │ │ │ ├── forward.rs │ │ │ ├── mod.rs │ │ │ ├── read.rs │ │ │ ├── reply.rs │ │ │ ├── send.rs │ │ │ ├── triage.rs │ │ │ └── watch.rs │ │ ├── mod.rs │ │ ├── modelarmor.rs │ │ ├── script.rs │ │ ├── sheets.rs │ │ └── workflows.rs │ ├── logging.rs │ ├── main.rs │ ├── oauth_config.rs │ ├── output.rs │ ├── schema.rs │ ├── services.rs │ ├── setup.rs │ ├── setup_tui.rs │ ├── text.rs │ ├── timezone.rs │ ├── token_storage.rs │ └── validate.rs └── templates/ └── modelarmor/ └── jailbreak.json