@orderful/droid 0.25.2 → 0.27.0
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/.claude-plugin/marketplace.json +114 -0
- package/.github/workflows/ci.yml +20 -0
- package/AGENTS.md +75 -18
- package/CHANGELOG.md +73 -0
- package/README.md +30 -4
- package/dist/bin/droid.js +164 -75
- package/dist/index.js +68 -26
- package/dist/lib/migrations.d.ts +8 -0
- package/dist/lib/migrations.d.ts.map +1 -1
- package/dist/lib/skill-config.d.ts.map +1 -1
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/tools.d.ts.map +1 -1
- package/dist/lib/types.d.ts +10 -2
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/tools/README.md +1 -1
- package/dist/tools/brain/.claude-plugin/plugin.json +16 -0
- package/dist/tools/brain/TOOL.yaml +7 -5
- package/dist/tools/brain/commands/brain.md +17 -49
- package/dist/tools/brain/commands/scratchpad.md +13 -50
- package/{src/tools/brain/skills/droid-brain → dist/tools/brain/skills/brain}/SKILL.md +6 -6
- package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/SKILL.md +9 -9
- package/dist/tools/coach/.claude-plugin/plugin.json +16 -0
- package/dist/tools/coach/TOOL.yaml +4 -3
- package/dist/tools/coach/commands/coach.md +14 -54
- package/{src/tools/coach/skills/droid-coach → dist/tools/coach/skills/coach}/SKILL.md +5 -4
- package/dist/tools/code-review/.claude-plugin/plugin.json +16 -0
- package/dist/tools/code-review/TOOL.yaml +4 -3
- package/dist/tools/code-review/commands/code-review.md +18 -102
- package/dist/tools/code-review/skills/code-review/SKILL.md +154 -0
- package/dist/tools/codex/.claude-plugin/plugin.json +16 -0
- package/dist/tools/codex/TOOL.yaml +5 -4
- package/dist/tools/codex/commands/codex.md +18 -65
- package/dist/tools/codex/skills/{droid-codex → codex}/SKILL.md +64 -45
- package/{src/tools/codex/skills/droid-codex → dist/tools/codex/skills/codex}/references/loading.md +94 -55
- package/dist/tools/codex/skills/codex/scripts/git-finish-write.d.ts.map +1 -0
- package/dist/tools/codex/skills/codex/scripts/git-preamble.d.ts.map +1 -0
- package/dist/tools/codex/skills/codex/scripts/git-start-write.d.ts.map +1 -0
- package/dist/tools/comments/.claude-plugin/plugin.json +16 -0
- package/dist/tools/comments/TOOL.yaml +4 -3
- package/dist/tools/comments/commands/comments.md +12 -14
- package/{src/tools/comments/skills/droid-comments → dist/tools/comments/skills/comments}/SKILL.md +4 -2
- package/dist/tools/droid/.claude-plugin/plugin.json +15 -0
- package/dist/tools/droid/TOOL.yaml +1 -1
- package/dist/tools/droid/skills/droid/SKILL.md +1 -1
- package/dist/tools/project/.claude-plugin/plugin.json +16 -0
- package/dist/tools/project/TOOL.yaml +4 -3
- package/dist/tools/project/commands/project.md +12 -27
- package/dist/tools/project/skills/{droid-project → project}/SKILL.md +13 -12
- package/dist/tools/tech-design/.claude-plugin/plugin.json +16 -0
- package/dist/tools/tech-design/TOOL.yaml +19 -0
- package/dist/tools/tech-design/commands/tech-design.md +31 -0
- package/dist/tools/tech-design/skills/tech-design/SKILL.md +218 -0
- package/dist/tools/tech-design/skills/tech-design/references/draft.md +321 -0
- package/dist/tools/tech-design/skills/tech-design/references/gaps.md +328 -0
- package/dist/tools/tech-design/skills/tech-design/references/publish.md +409 -0
- package/dist/tools/tech-design/skills/tech-design/references/research-doc-template.md +129 -0
- package/dist/tools/tech-design/skills/tech-design/references/rollup-template.md +55 -0
- package/dist/tools/tech-design/skills/tech-design/references/start.md +353 -0
- package/dist/tools/tech-design/skills/tech-design/references/think.md +356 -0
- package/dist/tools/tech-design/skills/tech-design/references/thought-doc-template.md +72 -0
- package/package.json +3 -2
- package/scripts/build-plugins.ts +207 -0
- package/src/commands/tui/components/Badge.test.tsx +10 -4
- package/src/commands/tui.tsx +4 -4
- package/src/lib/migrations.ts +95 -4
- package/src/lib/skill-config.ts +95 -57
- package/src/lib/skills.test.ts +199 -74
- package/src/lib/skills.ts +57 -56
- package/src/lib/tools.ts +19 -12
- package/src/lib/types.ts +20 -5
- package/src/tools/README.md +1 -1
- package/src/tools/brain/.claude-plugin/plugin.json +16 -0
- package/src/tools/brain/TOOL.yaml +7 -5
- package/src/tools/brain/commands/brain.md +17 -49
- package/src/tools/brain/commands/scratchpad.md +13 -50
- package/{dist/tools/brain/skills/droid-brain → src/tools/brain/skills/brain}/SKILL.md +6 -6
- package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/SKILL.md +9 -9
- package/src/tools/coach/.claude-plugin/plugin.json +16 -0
- package/src/tools/coach/TOOL.yaml +4 -3
- package/src/tools/coach/commands/coach.md +14 -54
- package/{dist/tools/coach/skills/droid-coach → src/tools/coach/skills/coach}/SKILL.md +5 -4
- package/src/tools/code-review/.claude-plugin/plugin.json +16 -0
- package/src/tools/code-review/TOOL.yaml +4 -3
- package/src/tools/code-review/commands/code-review.md +18 -102
- package/src/tools/code-review/skills/code-review/SKILL.md +154 -0
- package/src/tools/codex/.claude-plugin/plugin.json +16 -0
- package/src/tools/codex/TOOL.yaml +5 -4
- package/src/tools/codex/commands/codex.md +18 -65
- package/src/tools/codex/skills/{droid-codex → codex}/SKILL.md +64 -45
- package/{dist/tools/codex/skills/droid-codex → src/tools/codex/skills/codex}/references/loading.md +94 -55
- package/src/tools/comments/.claude-plugin/plugin.json +16 -0
- package/src/tools/comments/TOOL.yaml +4 -3
- package/src/tools/comments/commands/comments.md +12 -14
- package/{dist/tools/comments/skills/droid-comments → src/tools/comments/skills/comments}/SKILL.md +4 -2
- package/src/tools/droid/.claude-plugin/plugin.json +15 -0
- package/src/tools/droid/TOOL.yaml +1 -1
- package/src/tools/droid/skills/droid/SKILL.md +1 -1
- package/src/tools/project/.claude-plugin/plugin.json +16 -0
- package/src/tools/project/TOOL.yaml +4 -3
- package/src/tools/project/commands/project.md +12 -27
- package/src/tools/project/skills/{droid-project → project}/SKILL.md +13 -12
- package/src/tools/tech-design/.claude-plugin/plugin.json +16 -0
- package/src/tools/tech-design/TOOL.yaml +19 -0
- package/src/tools/tech-design/commands/tech-design.md +31 -0
- package/src/tools/tech-design/skills/tech-design/SKILL.md +218 -0
- package/src/tools/tech-design/skills/tech-design/references/draft.md +321 -0
- package/src/tools/tech-design/skills/tech-design/references/gaps.md +328 -0
- package/src/tools/tech-design/skills/tech-design/references/publish.md +409 -0
- package/src/tools/tech-design/skills/tech-design/references/research-doc-template.md +129 -0
- package/src/tools/tech-design/skills/tech-design/references/rollup-template.md +55 -0
- package/src/tools/tech-design/skills/tech-design/references/start.md +353 -0
- package/src/tools/tech-design/skills/tech-design/references/think.md +356 -0
- package/src/tools/tech-design/skills/tech-design/references/thought-doc-template.md +72 -0
- package/dist/tools/code-review/skills/droid-code-review/SKILL.md +0 -55
- package/dist/tools/codex/skills/droid-codex/scripts/git-finish-write.d.ts.map +0 -1
- package/dist/tools/codex/skills/droid-codex/scripts/git-preamble.d.ts.map +0 -1
- package/dist/tools/codex/skills/droid-codex/scripts/git-start-write.d.ts.map +0 -1
- package/src/tools/code-review/skills/droid-code-review/SKILL.md +0 -55
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/metadata.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/naming.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/templates.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/workflows.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/creating.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/decisions.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/topics.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-scripts.test.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.ts +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/changelog.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/creating.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/loading.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/templates.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/updating.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/versioning.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/metadata.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/naming.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/templates.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/workflows.md +0 -0
- /package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md +0 -0
- /package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/creating.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/decisions.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/topics.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-scripts.test.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.ts +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/changelog.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/creating.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/loading.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/templates.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/updating.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/versioning.md +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Thought Doc Template
|
|
2
|
+
|
|
3
|
+
Used when creating thought doc via `/brain plan tech-design-{project}`.
|
|
4
|
+
|
|
5
|
+
```markdown
|
|
6
|
+
# [Tech Design] {Project Name}
|
|
7
|
+
|
|
8
|
+
**Type:** plan
|
|
9
|
+
**Status:** exploring
|
|
10
|
+
**Created:** {YYYY-MM-DD}
|
|
11
|
+
**PRD:** [[codex:projects/{project}/PRD]]
|
|
12
|
+
**Research:** [[tech-design-{project}-research]]
|
|
13
|
+
|
|
14
|
+
Tech design for {project}.
|
|
15
|
+
|
|
16
|
+
## Background
|
|
17
|
+
|
|
18
|
+
{Why we're doing this - 2-3 paragraphs from PRD}
|
|
19
|
+
|
|
20
|
+
{What problem we're solving, who it's for, why it matters}
|
|
21
|
+
|
|
22
|
+
See research doc for codebase context and discovered patterns.
|
|
23
|
+
|
|
24
|
+
## Proposal
|
|
25
|
+
|
|
26
|
+
{What we're building - to be drafted}
|
|
27
|
+
|
|
28
|
+
## Open Questions
|
|
29
|
+
|
|
30
|
+
{What we don't know yet - to be explored}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Variable Substitutions
|
|
34
|
+
|
|
35
|
+
| Variable | Example | Notes |
|
|
36
|
+
| ---------------- | ----------------------- | --------------------------- |
|
|
37
|
+
| `{Project Name}` | "Transaction Templates" | Human-readable project name |
|
|
38
|
+
| `{YYYY-MM-DD}` | "2026-01-10" | Current date |
|
|
39
|
+
| `{project}` | "transaction-templates" | Codex project slug |
|
|
40
|
+
|
|
41
|
+
## Philosophy
|
|
42
|
+
|
|
43
|
+
**Start minimal:** 3 sections (Background, Proposal, Open Questions)
|
|
44
|
+
|
|
45
|
+
**Gaps surface more:** Use `/tech-design gaps` to discover what sections to add (Data Model, API Surface, Rollout Plan, etc.)
|
|
46
|
+
|
|
47
|
+
**Research doc separation:** The thought doc references the research doc but doesn't duplicate codebase discoveries. Keep the thought doc focused on architectural decisions.
|
|
48
|
+
|
|
49
|
+
## Sections That Can Be Added
|
|
50
|
+
|
|
51
|
+
Via `/tech-design draft {section}` or `/tech-design gaps`:
|
|
52
|
+
|
|
53
|
+
- **Scope** - What's in/out explicitly
|
|
54
|
+
- **Data Model** - Tables, schemas, types
|
|
55
|
+
- **API Surface** - Endpoints, methods, interfaces
|
|
56
|
+
- **Implementation Plan** - Step-by-step approach
|
|
57
|
+
- **Key Decisions** - Options considered, what we chose and why
|
|
58
|
+
- **Trade-off Analysis** - Pros/cons of approach
|
|
59
|
+
- **Risks & Mitigations** - What could go wrong, how to handle it
|
|
60
|
+
- **Metrics** - What we'll measure
|
|
61
|
+
- **Rollout Plan** - Phased deployment, feature flags, rollback
|
|
62
|
+
- **Security Considerations** - Auth, validation, audit logging
|
|
63
|
+
|
|
64
|
+
## Template Evolution
|
|
65
|
+
|
|
66
|
+
The template starts with 3 sections, but the thought doc grows based on:
|
|
67
|
+
|
|
68
|
+
1. **User adds via `/draft {section}`** - AI generates section from research
|
|
69
|
+
2. **User explores via `/think {topic}`** - May add sections organically
|
|
70
|
+
3. **User identifies via `/gaps`** - Shows what's missing, suggests adding
|
|
71
|
+
|
|
72
|
+
The minimal start reduces cognitive load. Sections appear when needed.
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: droid-code-review
|
|
3
|
-
description: "Comprehensive code review using specialized agents. Use when reviewing PRs, checking staged changes, or analysing code quality. User prompts like 'review this PR', 'check my changes', 'review before I commit'."
|
|
4
|
-
globs:
|
|
5
|
-
- "**/*"
|
|
6
|
-
alwaysApply: false
|
|
7
|
-
allowed-tools: Read, Grep, Glob, Bash, Task
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Code Review Skill
|
|
11
|
-
|
|
12
|
-
Run comprehensive code reviews using specialized agents, each focused on a specific concern.
|
|
13
|
-
|
|
14
|
-
## How It Works
|
|
15
|
-
|
|
16
|
-
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
17
|
-
|
|
18
|
-
1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
|
|
19
|
-
2. **test-coverage-analyzer** - Test completeness and edge cases
|
|
20
|
-
3. **error-handling-reviewer** - Silent failures, missing error handling
|
|
21
|
-
4. **type-reviewer** - TypeScript type design, interface contracts
|
|
22
|
-
|
|
23
|
-
Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
|
|
24
|
-
|
|
25
|
-
## Usage
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
/code-review #123 # Review PR #123
|
|
29
|
-
/code-review staged # Review staged changes
|
|
30
|
-
/code-review branch # Review current branch vs main
|
|
31
|
-
/code-review path/to/file # Review specific file
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Output Format
|
|
35
|
-
|
|
36
|
-
Reviews are presented in prioritized categories:
|
|
37
|
-
|
|
38
|
-
🔴 **Critical** - Security, data loss, billing errors
|
|
39
|
-
🟠 **Important** - Bugs, missing tests, type issues
|
|
40
|
-
🟡 **Suggestions** - Style, readability improvements
|
|
41
|
-
|
|
42
|
-
## Post-Review Actions
|
|
43
|
-
|
|
44
|
-
After presenting findings, you can:
|
|
45
|
-
- Post the review as a PR comment
|
|
46
|
-
- Get suggested fixes for specific issues
|
|
47
|
-
- Check out the branch and fix critical issues
|
|
48
|
-
|
|
49
|
-
## Domain-Aware Reviews
|
|
50
|
-
|
|
51
|
-
The EDI Standards Reviewer discovers project conventions by reading:
|
|
52
|
-
- `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
53
|
-
- `AGENTS.md` or `docs/` for architecture guidance
|
|
54
|
-
|
|
55
|
-
This lets it apply your project's specific patterns rather than generic rules.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-finish-write.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-finish-write.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-preamble.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-preamble.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;GAgBG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-start-write.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-start-write.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;GAmBG"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: droid-code-review
|
|
3
|
-
description: "Comprehensive code review using specialized agents. Use when reviewing PRs, checking staged changes, or analysing code quality. User prompts like 'review this PR', 'check my changes', 'review before I commit'."
|
|
4
|
-
globs:
|
|
5
|
-
- "**/*"
|
|
6
|
-
alwaysApply: false
|
|
7
|
-
allowed-tools: Read, Grep, Glob, Bash, Task
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Code Review Skill
|
|
11
|
-
|
|
12
|
-
Run comprehensive code reviews using specialized agents, each focused on a specific concern.
|
|
13
|
-
|
|
14
|
-
## How It Works
|
|
15
|
-
|
|
16
|
-
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
17
|
-
|
|
18
|
-
1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
|
|
19
|
-
2. **test-coverage-analyzer** - Test completeness and edge cases
|
|
20
|
-
3. **error-handling-reviewer** - Silent failures, missing error handling
|
|
21
|
-
4. **type-reviewer** - TypeScript type design, interface contracts
|
|
22
|
-
|
|
23
|
-
Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
|
|
24
|
-
|
|
25
|
-
## Usage
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
/code-review #123 # Review PR #123
|
|
29
|
-
/code-review staged # Review staged changes
|
|
30
|
-
/code-review branch # Review current branch vs main
|
|
31
|
-
/code-review path/to/file # Review specific file
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Output Format
|
|
35
|
-
|
|
36
|
-
Reviews are presented in prioritized categories:
|
|
37
|
-
|
|
38
|
-
🔴 **Critical** - Security, data loss, billing errors
|
|
39
|
-
🟠 **Important** - Bugs, missing tests, type issues
|
|
40
|
-
🟡 **Suggestions** - Style, readability improvements
|
|
41
|
-
|
|
42
|
-
## Post-Review Actions
|
|
43
|
-
|
|
44
|
-
After presenting findings, you can:
|
|
45
|
-
- Post the review as a PR comment
|
|
46
|
-
- Get suggested fixes for specific issues
|
|
47
|
-
- Check out the branch and fix critical issues
|
|
48
|
-
|
|
49
|
-
## Domain-Aware Reviews
|
|
50
|
-
|
|
51
|
-
The EDI Standards Reviewer discovers project conventions by reading:
|
|
52
|
-
- `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
53
|
-
- `AGENTS.md` or `docs/` for architecture guidance
|
|
54
|
-
|
|
55
|
-
This lets it apply your project's specific patterns rather than generic rules.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md
RENAMED
|
File without changes
|
/package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md
RENAMED
|
File without changes
|
/package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|