@simpleapps-com/augur-skills 0.0.14 → 0.0.17

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleapps-com/augur-skills",
3
- "version": "0.0.14",
3
+ "version": "0.0.17",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -6,13 +6,13 @@ Every project MUST use this layout:
6
6
 
7
7
  ```
8
8
  {project}/
9
- ├── repo/ # Main git repo (simpleapps-com/<name>.git)
10
- ├── wiki/ # GitHub wiki repo (simpleapps-com/<name>.wiki.git)
11
- ├── wip/ # Work-in-progress files for active tasks (not in git)
12
- └── protected/ # Secrets and credentials for dev testing (not in git)
9
+ ├── repo/ # Main git repo (simpleapps-com/<name>.git)
10
+ ├── wiki/ # GitHub wiki repo (simpleapps-com/<name>.wiki.git)
11
+ ├── wip/ # Work-in-progress files for active tasks (not in git)
12
+ └── .simpleapps/ # Project-level secrets and credentials (not in git)
13
13
  ```
14
14
 
15
- The parent `{project}/` directory is NOT a git repo — it's a local wrapper that keeps the code repo and wiki side-by-side. The `wip/` and `protected/` directories sit outside both git trees so their contents can never be accidentally committed.
15
+ The parent `{project}/` directory is NOT a git repo — it's a local wrapper that keeps the code repo and wiki side-by-side. The `wip/` and `.simpleapps/` directories sit outside both git trees so their contents can never be accidentally committed.
16
16
 
17
17
  ## Why This Pattern
18
18
 
@@ -41,7 +41,8 @@ If the wiki repo doesn't exist yet, create it by adding any page via the GitHub
41
41
  | Repo `.claude/rules/` | `repo/` | Minimal summaries referencing wiki pages |
42
42
  | Repo `.claude/CLAUDE.md` | `repo/` | Quick reference + wiki links |
43
43
  | Active task context | `wip/` | WIP files for Basecamp todos or GitHub issues |
44
- | Dev secrets | `protected/` | API keys, tokens, test credentials |
44
+ | Project secrets | `{project}/.simpleapps/` | Site-specific credentials, `{siteId}.json` |
45
+ | Global secrets | `~/.simpleapps/` | Shared credentials across all projects |
45
46
 
46
47
  Rule of thumb: if a `.md` file isn't built into the end product, it belongs in the wiki. If it contains secrets or ephemeral task state, it belongs outside both git trees.
47
48
 
@@ -69,15 +70,18 @@ The `wip/` directory holds work-in-progress files that AI agents create when pic
69
70
 
70
71
  ### What does NOT belong in WIP
71
72
 
72
- - Secrets, credentials, or tokens (use `protected/`)
73
+ - Secrets, credentials, or tokens (use `.simpleapps/`)
73
74
  - Final documentation (use `wiki/`)
74
75
  - Code (use `repo/`)
75
76
 
76
- ## Protected Directory
77
+ ## Credentials (`.simpleapps/`)
77
78
 
78
- The `protected/` directory stores secrets and credentials needed during development and testing. It sits outside all git trees so nothing can be accidentally committed.
79
+ Secrets and credentials live in `.simpleapps/` directories at two levels:
79
80
 
80
- Examples: API keys, OAuth tokens, test credentials, `.env` files for local testing.
81
+ - **`~/.simpleapps/`** (user-level) shared credentials across all projects (e.g., `augur-api.json`, `basecamp.json`)
82
+ - **`{project}/.simpleapps/`** (project-level) — credentials specific to that project (e.g., `{siteId}.json` with test user creds)
83
+
84
+ Project-level credentials override user-level ones when both exist. Both directories sit outside git trees so nothing can be accidentally committed.
81
85
 
82
86
  MUST NOT be committed to any git repository. MUST NOT be copied into `repo/` or `wiki/`.
83
87