Compare commits

...

7 Commits

Author SHA1 Message Date
Bill 40e92241f8 Add morgen-calendar skill submodule
User-level skill for reading and writing events on calendars connected
to Morgen, via the v3 REST API. Mirrors the user's existing Windmill
scripts at f/morgen/*. Repo: git.prettyhefty.com/Bill/morgen-calendar-skill.
2026-05-21 18:28:29 -04:00
Bill 42da4728e0 Bump claude-skill-git-gitea: quick reference + helper-first guidance 2026-05-10 08:59:56 -04:00
Bill 80936cde45 Default to auto mode and skip its prompt
- permissions.defaultMode: "auto" — start sessions in auto mode
- skipAutoPermissionPrompt: true — skip the auto-mode confirmation prompt
2026-05-10 08:57:55 -04:00
Bill e1e419b962 Add excalidraw-diagram-skill as submodule
Pulls in coleam00/excalidraw-diagram-skill for creating Excalidraw
diagram JSON files to visualize workflows and architectures.
2026-05-10 08:54:49 -04:00
Bill a0b1101885 Update claude-skill-git-gitea submodule 2026-04-26 09:55:34 -04:00
Bill b89764b52b Update plugins and settings
- Bump superpowers plugin to 4.1.1
- Add ralph-wiggum plugin
- Update git-gitea skill submodule
- Enable skipDangerousModePermissionPrompt
2026-04-20 18:23:45 -04:00
Bill a0be6e76bb Add runtime/ephemeral paths to gitignore
Ignore backups/, tasks/, sessions/, and mcp-needs-auth-cache.json
as these are machine-specific runtime data.
2026-04-20 18:23:17 -04:00
6 changed files with 23 additions and 8 deletions
+4
View File
@@ -28,5 +28,9 @@ plugins/install-counts-cache.json
plugins/known_marketplaces.json
plugins/installed_plugins.json
plugins/blocklist.json
# Session and runtime data
backups/
tasks/
sessions/
mcp-needs-auth-cache.json
+6
View File
@@ -11,3 +11,9 @@
path = skills/vault
url = https://git.prettyhefty.com/Bill/obsidian-vault-manager.git
branch = master
[submodule "skills/excalidraw-diagram-skill"]
path = skills/excalidraw-diagram-skill
url = https://github.com/coleam00/excalidraw-diagram-skill
[submodule "skills/morgen-calendar"]
path = skills/morgen-calendar
url = https://git.prettyhefty.com/Bill/morgen-calendar-skill.git
+10 -7
View File
@@ -1,4 +1,8 @@
{
"attribution": {
"commit": "",
"pr": ""
},
"permissions": {
"allow": [
"Bash(git:*)",
@@ -33,7 +37,8 @@
"Bash(git branch -d:*)",
"Bash(git branch -D:*)",
"Bash(git branch --delete:*)"
]
],
"defaultMode": "auto"
},
"statusLine": {
"type": "command",
@@ -43,12 +48,10 @@
"superpowers@superpowers-marketplace": true,
"frontend-design@claude-code-plugins": true,
"example-skills@anthropic-agent-skills": true,
"superpowers@claude-plugins-official": true
"superpowers@claude-plugins-official": true,
"ralph-wiggum@claude-code-plugins": true
},
"alwaysThinkingEnabled": true,
"attribution": {
"commit": "",
"pr": ""
},
"skipDangerousModePermissionPrompt": true
"skipDangerousModePermissionPrompt": true,
"skipAutoPermissionPrompt": true
}