Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
1076bfe
Add AGENTS.md guidelines and reorganize documentation
orlin369 Feb 1, 2026
fc84d6c
Merge dev into main
orlin369 Feb 1, 2026
4bceae6
Update .gitignore with comprehensive ignore patterns
orlin369 Feb 1, 2026
6aa368a
Merge dev into main
orlin369 Feb 1, 2026
0f90fed
Add The Pill UART peripheral collection
orlin369 Feb 1, 2026
9484038
Merge feature/the-pill-collection into dev
orlin369 Feb 1, 2026
4f22998
Merge dev into main
orlin369 Feb 1, 2026
5872c0c
Move BLU Assistant scripts
orlin369 Feb 1, 2026
33854ee
Move BLE and BLU examples
orlin369 Feb 1, 2026
2da99f1
Move LoRa examples
orlin369 Feb 1, 2026
1122660
Move MQTT and HA examples
orlin369 Feb 1, 2026
e04ca17
Move power and energy scripts
orlin369 Feb 1, 2026
3304313
Move switch and input scripts
orlin369 Feb 1, 2026
c943594
Move weather and environment scripts
orlin369 Feb 1, 2026
3b60369
Move HTTP integration scripts
orlin369 Feb 1, 2026
09ae17c
Move networking scripts
orlin369 Feb 1, 2026
8efd3f4
Move scheduling scripts
orlin369 Feb 1, 2026
a498de1
Update manifest paths
orlin369 Feb 1, 2026
ceb215c
Update docs for new layout
orlin369 Feb 1, 2026
168fbbc
Add ThingSpeak HTTP POST script
orlin369 Feb 1, 2026
98386ef
Rename scripts to .shelly.js
orlin369 Feb 1, 2026
db8aab7
Update references for .shelly.js
orlin369 Feb 1, 2026
be16f84
Regenerate index and changelog
orlin369 Feb 1, 2026
9cb8ffb
Add folder READMEs
orlin369 Feb 1, 2026
7eb2ef5
Move Telegram guide into http-integrations
orlin369 Feb 1, 2026
5f40a64
Add tools README
orlin369 Feb 1, 2026
92edf54
Add BLU presence watcher example
orlin369 Feb 1, 2026
163f927
Add manifest integrity checker tool
orlin369 Feb 1, 2026
58b3962
Update manifest tools
orlin369 Feb 1, 2026
f851381
Regenerate script index
orlin369 Feb 1, 2026
f56203d
Update BLE examples
orlin369 Feb 1, 2026
9a0bc23
Update howto examples
orlin369 Feb 1, 2026
a673758
Update HTTP integrations
orlin369 Feb 1, 2026
222d234
Update LoRa examples
orlin369 Feb 1, 2026
9576edc
Update MQTT examples
orlin369 Feb 1, 2026
60f4ef6
Update networking scripts
orlin369 Feb 1, 2026
f327932
Update power and energy scripts
orlin369 Feb 1, 2026
8557d6c
Update scheduling scripts
orlin369 Feb 1, 2026
9cbd8bb
Update switch and input scripts
orlin369 Feb 1, 2026
ec05e0b
Update The Pill scripts
orlin369 Feb 1, 2026
d4b4b7e
Update weather and environment scripts
orlin369 Feb 1, 2026
e791134
Document standard two-header file structure pattern
orlin369 Feb 1, 2026
94c850f
Link repository layout entries
orlin369 Feb 1, 2026
64f4e15
Sort repository layout list
orlin369 Feb 1, 2026
0dd2e2e
Merge branch 'dev'
Feb 2, 2026
10cf736
Add @title and @description headers to scripts missing them
Feb 2, 2026
7354f99
Support JSDoc @title/@description in sync-manifest.py
Feb 2, 2026
c59a67a
Remove excluded _backup scripts from manifest
Feb 2, 2026
4f01727
Merge branch 'dev'
Feb 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
\.DS*
# Claude temporary files
tmpclaude-*

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock

# Build outputs
dist/
build/
out/

# IDE and editors
.vscode/
.idea/
*.swp
/.idea/
*.swo
*~

# OS files
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Environment files
.env
.env.local
.env.*.local

# Coverage
coverage/
.nyc_output/
Loading