opencodekit 0.4.0 → 0.6.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/dist/index.js +10 -1
- package/dist/template/.opencode/AGENTS.md +86 -55
- package/dist/template/.opencode/agent/build.md +20 -0
- package/dist/template/.opencode/agent/rush.md +27 -15
- package/dist/template/.opencode/command/init.md +176 -0
- package/dist/template/.opencode/command/summarize.md +71 -0
- package/dist/template/.opencode/memory/project/README.md +47 -16
- package/dist/template/.opencode/memory/project/architecture.md +26 -0
- package/dist/template/.opencode/memory/project/commands.md +26 -0
- package/dist/template/.opencode/memory/project/conventions.md +26 -0
- package/dist/template/.opencode/memory/project/gotchas.md +26 -0
- package/dist/template/.opencode/memory/user.example.md +21 -0
- package/dist/template/.opencode/memory/user.md +21 -0
- package/dist/template/.opencode/opencode.json +535 -470
- package/dist/template/.opencode/package.json +1 -2
- package/dist/template/.opencode/plugin/sessions.ts +26 -1
- package/package.json +1 -1
- package/dist/template/.opencode/command/setup-project.md +0 -152
- package/dist/template/.opencode/pickle-thinker.jsonc +0 -11
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
purpose: Build, test, lint, deploy commands discovered for this project
|
|
3
|
+
updated: 2024-12-21
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Project Commands
|
|
7
|
+
|
|
8
|
+
## Build
|
|
9
|
+
|
|
10
|
+
<!-- npm run build, make, cargo build, etc. -->
|
|
11
|
+
|
|
12
|
+
## Test
|
|
13
|
+
|
|
14
|
+
<!-- npm test, pytest, cargo test, etc. -->
|
|
15
|
+
|
|
16
|
+
## Lint
|
|
17
|
+
|
|
18
|
+
<!-- npm run lint, ruff check, etc. -->
|
|
19
|
+
|
|
20
|
+
## Deploy
|
|
21
|
+
|
|
22
|
+
<!-- Deployment commands if applicable -->
|
|
23
|
+
|
|
24
|
+
## Other
|
|
25
|
+
|
|
26
|
+
<!-- Project-specific commands worth remembering -->
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
purpose: Code patterns, commit style, PR process, team conventions
|
|
3
|
+
updated: 2024-12-21
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Project Conventions
|
|
7
|
+
|
|
8
|
+
## Code Style
|
|
9
|
+
|
|
10
|
+
<!-- Naming conventions, formatting rules, import ordering -->
|
|
11
|
+
|
|
12
|
+
## Commit Messages
|
|
13
|
+
|
|
14
|
+
<!-- Conventional commits? Prefix style? -->
|
|
15
|
+
|
|
16
|
+
## PR Process
|
|
17
|
+
|
|
18
|
+
<!-- Review requirements, CI checks, merge strategy -->
|
|
19
|
+
|
|
20
|
+
## Patterns to Follow
|
|
21
|
+
|
|
22
|
+
<!-- Recurring patterns in this codebase -->
|
|
23
|
+
|
|
24
|
+
## Patterns to Avoid
|
|
25
|
+
|
|
26
|
+
<!-- Anti-patterns specific to this project -->
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
purpose: Footguns, edge cases, and "don't forget this" warnings
|
|
3
|
+
updated: 2024-12-21
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Project Gotchas
|
|
7
|
+
|
|
8
|
+
## Code That Looks Right But Breaks
|
|
9
|
+
|
|
10
|
+
<!-- Subtle bugs, misleading APIs -->
|
|
11
|
+
|
|
12
|
+
## Non-Obvious Dependencies
|
|
13
|
+
|
|
14
|
+
<!-- Hidden coupling, initialization order -->
|
|
15
|
+
|
|
16
|
+
## Configuration Quirks
|
|
17
|
+
|
|
18
|
+
<!-- Environment variables, config files that bite -->
|
|
19
|
+
|
|
20
|
+
## Time Wasters
|
|
21
|
+
|
|
22
|
+
<!-- Things that will waste 2+ hours if you forget -->
|
|
23
|
+
|
|
24
|
+
## Platform-Specific Issues
|
|
25
|
+
|
|
26
|
+
<!-- macOS vs Linux, Node versions, etc. -->
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
purpose: User identity, preferences, communication style
|
|
3
|
+
updated: 2024-12-21
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# User Profile
|
|
7
|
+
|
|
8
|
+
## Identity
|
|
9
|
+
<!-- Name, role, git contributor identity -->
|
|
10
|
+
|
|
11
|
+
## Communication Preferences
|
|
12
|
+
<!-- Concise vs detailed, tone preferences -->
|
|
13
|
+
|
|
14
|
+
## Workflow Preferences
|
|
15
|
+
<!-- Preferred tools, testing habits, review style -->
|
|
16
|
+
|
|
17
|
+
## Technical Preferences
|
|
18
|
+
<!-- Languages, frameworks, patterns they favor -->
|
|
19
|
+
|
|
20
|
+
## Things to Remember
|
|
21
|
+
<!-- Personal quirks, pet peeves, preferences learned -->
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
purpose: User identity, preferences, communication style
|
|
3
|
+
updated: 2024-12-21
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# User Profile
|
|
7
|
+
|
|
8
|
+
## Identity
|
|
9
|
+
<!-- Name, role, git contributor identity -->
|
|
10
|
+
|
|
11
|
+
## Communication Preferences
|
|
12
|
+
<!-- Concise vs detailed, tone preferences -->
|
|
13
|
+
|
|
14
|
+
## Workflow Preferences
|
|
15
|
+
<!-- Preferred tools, testing habits, review style -->
|
|
16
|
+
|
|
17
|
+
## Technical Preferences
|
|
18
|
+
<!-- Languages, frameworks, patterns they favor -->
|
|
19
|
+
|
|
20
|
+
## Things to Remember
|
|
21
|
+
<!-- Personal quirks, pet peeves, preferences learned -->
|