Skip to content

Commit c04c89f

Browse files
committed
fix(install): create .playground directory on setup
1 parent 91e8739 commit c04c89f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.knowledge/log/2026-04-02.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
entries:
2+
- timestamp: 2026-04-02T13:00:00Z
3+
type: commit
4+
message: "fix(install): create .playground directory on setup"
5+
files:
6+
- docs/install.sh
7+
summary: |
8+
Added .playground/ directory creation and .gitignore to the install script,
9+
ensuring subagent scratch space is ready after setup.
210
- timestamp: 2026-04-02T00:00:00Z
311
type: commit
412
message: "docs(article): apply style review fixes to AI agents v2 draft"

docs/install.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ install_link() {
112112
create_directories() {
113113
info "Creating .knowledge/ directories..."
114114
mkdir -p .knowledge/{notes,plans,log,drafts}
115+
mkdir -p .playground
116+
echo * > .playground/.gitignore
115117
success "Directories created"
116118
}
117119

0 commit comments

Comments
 (0)