@simpleapps-com/augur-skills 0.0.23 → 2026.3.1
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/package.json +1 -1
- package/skills/simpleapps/augur-packages/SKILL.md +4 -0
- package/skills/simpleapps/basecamp/SKILL.md +6 -0
- package/skills/simpleapps/claude-code-docs/SKILL.md +3 -0
- package/skills/simpleapps/fyxer/SKILL.md +7 -0
- package/skills/simpleapps/github/SKILL.md +6 -1
- package/skills/simpleapps/project-defaults/SKILL.md +52 -2
- package/skills/simpleapps/wiki/SKILL.md +7 -0
- package/skills/simpleapps/workflow/SKILL.md +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: augur-packages
|
|
3
3
|
description: Shared npm packages under @simpleapps-com/augur-*. Directs agents to check installed packages before writing custom code. This skill is a starting point — always read the actual package code for current API surface.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Glob
|
|
7
|
+
- Grep
|
|
4
8
|
---
|
|
5
9
|
|
|
6
10
|
# Augur Packages
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: basecamp
|
|
3
3
|
description: Basecamp 2 integration via MCP. Covers MCP tool reference, URL parsing, authentication, Chrome fallback, attachments, and site-info documents. Use when reading or writing Basecamp data.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Glob
|
|
7
|
+
- Grep
|
|
8
|
+
- mcp__plugin_simpleapps_basecamp__*
|
|
9
|
+
- mcp__claude-in-chrome__*
|
|
4
10
|
---
|
|
5
11
|
|
|
6
12
|
# Basecamp 2
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: claude-code-docs
|
|
3
3
|
description: Claude Code documentation reference and discovery. Use when looking up Claude Code features, configuration, plugins, skills, hooks, or troubleshooting.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- WebFetch
|
|
4
7
|
---
|
|
5
8
|
|
|
6
9
|
# Claude Code Documentation
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: fyxer
|
|
3
3
|
description: Fyxer AI meeting recording integration. Covers extraction, local caching, posting to Basecamp, and Fyxer Index management. Use when processing Fyxer recordings or meeting transcripts.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Glob
|
|
8
|
+
- Bash
|
|
9
|
+
- mcp__plugin_simpleapps_basecamp__*
|
|
10
|
+
- mcp__claude-in-chrome__*
|
|
4
11
|
---
|
|
5
12
|
|
|
6
13
|
# Fyxer
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: github
|
|
3
3
|
description: GitHub conventions for SimpleApps. Covers org structure, git safety, issue creation, PR workflows, and gh CLI usage. Use when creating issues, PRs, or working with GitHub repos.
|
|
4
|
-
allowed-tools:
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Skill(project-defaults)
|
|
6
|
+
- Read
|
|
7
|
+
- Glob
|
|
8
|
+
- Grep
|
|
9
|
+
- Bash
|
|
5
10
|
---
|
|
6
11
|
|
|
7
12
|
First, use Skill("project-defaults") to load the project layout.
|
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: project-defaults
|
|
3
3
|
description: SimpleApps project conventions. Covers directory layout, symlink setup for .claude integration, permission defaults (deny cd, kill), and per-project baseline settings. Use when setting up projects, checking structure, or configuring Claude Code defaults.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Bash
|
|
4
7
|
---
|
|
5
8
|
|
|
6
9
|
# Project Defaults
|
|
7
10
|
|
|
8
|
-
## Directory
|
|
11
|
+
## Base Directory Standard
|
|
12
|
+
|
|
13
|
+
All projects live under `~/projects/` in two groups:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
~/projects/
|
|
17
|
+
├── simpleapps/ # Internal repos (augur-*, shared infra)
|
|
18
|
+
│ ├── augur-skills/
|
|
19
|
+
│ ├── augur-packages/
|
|
20
|
+
│ └── augur/
|
|
21
|
+
└── clients/ # Client site repos
|
|
22
|
+
├── ampro-online/
|
|
23
|
+
└── directsupplyinc/
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- Internal repos go in `~/projects/simpleapps/`
|
|
27
|
+
- Client site repos go in `~/projects/clients/`
|
|
28
|
+
|
|
29
|
+
## Project Directory Layout
|
|
9
30
|
|
|
10
31
|
Every project MUST use this layout:
|
|
11
32
|
|
|
@@ -57,6 +78,9 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
|
|
|
57
78
|
```json
|
|
58
79
|
{
|
|
59
80
|
"permissions": {
|
|
81
|
+
"allow": [
|
|
82
|
+
"Bash(pnpm:*)"
|
|
83
|
+
],
|
|
60
84
|
"deny": [
|
|
61
85
|
"Bash(cd:*)",
|
|
62
86
|
"Bash(cat:*)",
|
|
@@ -64,7 +88,12 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
|
|
|
64
88
|
"Bash(grep:*)",
|
|
65
89
|
"Bash(sleep:*)",
|
|
66
90
|
"Bash(kill:*)",
|
|
67
|
-
"Bash(pkill:*)"
|
|
91
|
+
"Bash(pkill:*)",
|
|
92
|
+
"Bash(find:*)",
|
|
93
|
+
"Bash(head:*)",
|
|
94
|
+
"Bash(tail:*)",
|
|
95
|
+
"Bash(awk:*)",
|
|
96
|
+
"Bash(rg:*)"
|
|
68
97
|
]
|
|
69
98
|
}
|
|
70
99
|
}
|
|
@@ -77,8 +106,29 @@ Why each is denied:
|
|
|
77
106
|
- **`sed`** — Use the Edit tool instead.
|
|
78
107
|
- **`grep`** — Use the Grep tool instead.
|
|
79
108
|
- **`sleep`** — Unnecessary; use proper sequencing or background tasks.
|
|
109
|
+
- **`find`** — Use the Glob tool instead.
|
|
110
|
+
- **`head`/`tail`** — Use the Read tool with `offset` and `limit` parameters instead.
|
|
111
|
+
- **`awk`** — Use the Edit tool instead.
|
|
112
|
+
- **`rg`** — Use the Grep tool instead (it uses ripgrep internally).
|
|
80
113
|
- **`kill`/`pkill`** — Use `TaskStop` to manage background processes. For internal tasks running in the background (dev servers, watchers, etc.), always use `TaskStop` instead of shell kill commands. `TaskStop` cleanly shuts down the task and updates Claude Code's internal tracking.
|
|
81
114
|
|
|
115
|
+
## Bin Scripts (PATH)
|
|
116
|
+
|
|
117
|
+
The augur-skills plugin includes shell scripts (`cld`, `cldo`, `tmcld`, etc.) in `plugins/simpleapps/bin/`. When installed via the Claude Code marketplace, these live at:
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
~/.claude/plugins/marketplaces/augur-skills/plugins/simpleapps/bin/
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
To make them available on PATH, add to `~/.zshrc`:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
# SimpleApps augur-skills bin scripts
|
|
127
|
+
export PATH="$PATH:$HOME/.claude/plugins/marketplaces/augur-skills/plugins/simpleapps/bin"
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
This path is stable across plugin updates (marketplace updates are git pulls). The `project-init` command checks for this and adds it if missing.
|
|
131
|
+
|
|
82
132
|
## New Project Setup
|
|
83
133
|
|
|
84
134
|
```bash
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki
|
|
3
3
|
description: Wiki conventions for SimpleApps projects. Covers token budget, writing for three audiences, page conventions, maintenance rules, and git workflow. Use when reading, writing, or auditing wiki content.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Glob
|
|
7
|
+
- Grep
|
|
8
|
+
- Edit
|
|
9
|
+
- Write
|
|
10
|
+
- Bash
|
|
4
11
|
---
|
|
5
12
|
|
|
6
13
|
# Wiki
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: workflow
|
|
3
3
|
description: How we track and deliver work. Covers the Basecamp-to-GitHub flow for client requests, task tracking, cross-linking, and issue templates. Use when working on client tasks, creating issues, or checking assignments.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Glob
|
|
7
|
+
- Grep
|
|
4
8
|
---
|
|
5
9
|
|
|
6
10
|
# Workflow
|