@normful/picadillo 1.0.2
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/CHANGELOG.md +28 -0
- package/LICENSE +21 -0
- package/README.md +54 -0
- package/bun.lock +870 -0
- package/cliff.toml +94 -0
- package/extensions/.gitkeep +0 -0
- package/generate-changelog.sh +12 -0
- package/package.json +53 -0
- package/prompts/.gitkeep +0 -0
- package/skills/.gitkeep +0 -0
- package/skills/run-in-tmux/SKILL.md +81 -0
- package/skills/run-in-tmux/scripts/run-in-tmux +258 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
## [1.0.2] - 2026-02-16
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Initialize as Pi package with conventional directories
|
|
6
|
+
- *(package.json)* Add empty prompts array to pi configuration
|
|
7
|
+
- *(release)* Add release-it configuration to automate releases
|
|
8
|
+
- *(deps)* Add git-cliff configuration file
|
|
9
|
+
- *(ci)* Add generate-changelog.sh script to automate changelog generation
|
|
10
|
+
- *(release)* Add changelog generation hooks to release process
|
|
11
|
+
|
|
12
|
+
### 💼 Other
|
|
13
|
+
|
|
14
|
+
- *(deps)* Upgrade typescript peer dependency and add tsconfig.json
|
|
15
|
+
- *(deps)* Add release configuration files to package ignore list
|
|
16
|
+
|
|
17
|
+
### 📚 Documentation
|
|
18
|
+
|
|
19
|
+
- Add minimal user-facing README with logo
|
|
20
|
+
- Add link to pi-mono in README
|
|
21
|
+
- Add SKILL.md for run-in-tmux skill
|
|
22
|
+
- Add Extensions and Skills tables to README
|
|
23
|
+
|
|
24
|
+
### ⚙️ Miscellaneous Tasks
|
|
25
|
+
|
|
26
|
+
- Remove themes directory
|
|
27
|
+
- Add release-it script
|
|
28
|
+
- *(package.json)* Add publishConfig to make package publicly accessible on publish
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Norman Sue
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Picadillo
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="./logo.png" alt="Picadillo" width="800">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
**picadillo**
|
|
8
|
+
*noun* \ˌpē-kə-ˈdē-(ˌ)yō\
|
|
9
|
+
|
|
10
|
+
1. A ground meat dish cooked with tomatoes and seasonings, sometimes with
|
|
11
|
+
potatoes, olives, or raisins; served on its own or as a filling.
|
|
12
|
+
|
|
13
|
+
2. *(tech slang)* A mix of [`pi`](https://github.com/badlogic/pi-mono) coding agent extensions,
|
|
14
|
+
skills, and commands combined into one cohesive workflow; modular,
|
|
15
|
+
interoperable, and—depending on the build—
|
|
16
|
+
- occasionally containing undocumented features
|
|
17
|
+
- prone to “seasonal” bugs
|
|
18
|
+
- held together by optimism and duct taped tokens
|
|
19
|
+
|
|
20
|
+
**Etymology:** From Spanish *picar* (“to mince, to chop”), from Vulgar Latin
|
|
21
|
+
*piccare* (“to pierce”). Folk etymology proposes a secondary meaning: “to
|
|
22
|
+
repeatedly poke reality until it tastes better.”
|
|
23
|
+
|
|
24
|
+
**Usage note:** May contain olives, raisins, or side effects.
|
|
25
|
+
|
|
26
|
+
## Install
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pi install git:github.com/normful/picadillo
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Or try without installing:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pi -e git:github.com/normful/picadillo
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## Skills
|
|
40
|
+
|
|
41
|
+
| Skill | Description |
|
|
42
|
+
|-------|-------------|
|
|
43
|
+
| [run-in-tmux](skills/run-in-tmux/) | Run commands in a new tmux session with split panes. Useful for dev environments, parallel processes, and persistent background tasks. |
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Extensions
|
|
47
|
+
|
|
48
|
+
Coming soon!
|
|
49
|
+
|
|
50
|
+
## Uninstall
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
pi remove git:github.com/ben-vargas/pi-packages
|
|
54
|
+
```
|