@normful/picadillo 1.0.4 โ†’ 1.2.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/CHANGELOG.md CHANGED
@@ -1,8 +1,18 @@
1
- ## [1.0.4] - 2026-02-16
1
+ ## [1.2.0] - 2026-02-16
2
2
 
3
- ### ๐Ÿ› Bug Fixes
3
+ ### ๐Ÿšœ Refactor
4
+
5
+ - *(readme)* Update installation and uninstallation commands to use direct HTTPS URL
6
+ - *(package.json)* Remove obsolete "pi" configuration section
7
+ ## [1.1.0] - 2026-02-16
8
+
9
+ ### ๐Ÿš€ Features
10
+
11
+ - *(npmignore)* Include release scripts in npm package distribution
12
+
13
+ ### โš™๏ธ Miscellaneous Tasks
4
14
 
5
- - Update path for run-in-tmux skill in package.json
15
+ - Release 1.1.0
6
16
  ## [1.0.3] - 2026-02-16
7
17
 
8
18
  ### ๐Ÿšœ Refactor
package/README.md CHANGED
@@ -26,15 +26,10 @@ repeatedly poke reality until it tastes better.โ€
26
26
  ## Install
27
27
 
28
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
29
+ pi install https://github.com/normful/picadillo
36
30
  ```
37
31
 
32
+ Configure what you don't want with `pi config`. It will modify `~/.pi/agent/settings.json`
38
33
 
39
34
  ## Skills
40
35
 
@@ -50,5 +45,5 @@ Coming soon!
50
45
  ## Uninstall
51
46
 
52
47
  ```bash
53
- pi remove git:github.com/ben-vargas/pi-packages
48
+ pi remove https://github.com/normful/picadillo
54
49
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@normful/picadillo",
3
- "version": "1.0.4",
3
+ "version": "1.2.0",
4
4
  "private": false,
5
5
  "description": "Norman's pi coding agent commands, skills, extensions",
6
6
  "keywords": [
@@ -36,13 +36,6 @@
36
36
  "@mariozechner/pi-tui": "*",
37
37
  "typescript": "^5"
38
38
  },
39
- "pi": {
40
- "prompts": [],
41
- "extensions": [],
42
- "skills": [
43
- "./skills/run-in-tmux/SKILL.md"
44
- ]
45
- },
46
39
  "devDependencies": {
47
40
  "@types/bun": "latest",
48
41
  "release-it": "^19.2.4"
package/cliff.toml DELETED
@@ -1,94 +0,0 @@
1
- # git-cliff ~ configuration file
2
- # https://git-cliff.org/docs/configuration
3
-
4
-
5
- [changelog]
6
- # A Tera template to be rendered for each release in the changelog.
7
- # See https://keats.github.io/tera/docs/#introduction
8
- body = """
9
- {% if version %}\
10
- ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
11
- {% else %}\
12
- ## [unreleased]
13
- {% endif %}\
14
- {% for group, commits in commits | group_by(attribute="group") %}
15
- ### {{ group | striptags | trim | upper_first }}
16
- {% for commit in commits %}
17
- - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
18
- {% if commit.breaking %}[**breaking**] {% endif %}\
19
- {{ commit.message | upper_first }}\
20
- {% endfor %}
21
- {% endfor %}
22
- """
23
- # Remove leading and trailing whitespaces from the changelog's body.
24
- trim = true
25
- # Render body even when there are no releases to process.
26
- render_always = true
27
- # An array of regex based postprocessors to modify the changelog.
28
- postprocessors = [
29
- # Replace the placeholder <REPO> with a URL.
30
- #{ pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" },
31
- ]
32
- # render body even when there are no releases to process
33
- # render_always = true
34
- # output file path
35
- # output = "test.md"
36
-
37
- [git]
38
- # Parse commits according to the conventional commits specification.
39
- # See https://www.conventionalcommits.org
40
- conventional_commits = true
41
- # Exclude commits that do not match the conventional commits specification.
42
- filter_unconventional = true
43
- # Require all commits to be conventional.
44
- # Takes precedence over filter_unconventional.
45
- require_conventional = false
46
- # Split commits on newlines, treating each line as an individual commit.
47
- split_commits = false
48
- # An array of regex based parsers to modify commit messages prior to further processing.
49
- commit_preprocessors = [
50
- # Replace issue numbers with link templates to be updated in `changelog.postprocessors`.
51
- #{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
52
- # Check spelling of the commit message using https://github.com/crate-ci/typos.
53
- # If the spelling is incorrect, it will be fixed automatically.
54
- #{ pattern = '.*', replace_command = 'typos --write-changes -' },
55
- ]
56
- # Prevent commits that are breaking from being excluded by commit parsers.
57
- protect_breaking_commits = false
58
- # An array of regex based parsers for extracting data from the commit message.
59
- # Assigns commits to groups.
60
- # Optionally sets the commit's scope and can decide to exclude commits from further processing.
61
- commit_parsers = [
62
- { message = "^feat", group = "<!-- 0 -->๐Ÿš€ Features" },
63
- { message = "^fix", group = "<!-- 1 -->๐Ÿ› Bug Fixes" },
64
- { message = "^doc", group = "<!-- 3 -->๐Ÿ“š Documentation" },
65
- { message = "^perf", group = "<!-- 4 -->โšก Performance" },
66
- { message = "^refactor", group = "<!-- 2 -->๐Ÿšœ Refactor" },
67
- { message = "^style", group = "<!-- 5 -->๐ŸŽจ Styling" },
68
- { message = "^test", group = "<!-- 6 -->๐Ÿงช Testing" },
69
- { message = "^chore\\(release\\): prepare for", skip = true },
70
- { message = "^chore\\(deps.*\\)", skip = true },
71
- { message = "^chore\\(pr\\)", skip = true },
72
- { message = "^chore\\(pull\\)", skip = true },
73
- { message = "^chore|^ci", group = "<!-- 7 -->โš™๏ธ Miscellaneous Tasks" },
74
- { body = ".*security", group = "<!-- 8 -->๐Ÿ›ก๏ธ Security" },
75
- { message = "^revert", group = "<!-- 9 -->โ—€๏ธ Revert" },
76
- { message = ".*", group = "<!-- 10 -->๐Ÿ’ผ Other" },
77
- ]
78
- # Exclude commits that are not matched by any commit parser.
79
- filter_commits = false
80
- # Fail on a commit that is not matched by any commit parser.
81
- fail_on_unmatched_commit = false
82
- # An array of link parsers for extracting external references, and turning them into URLs, using regex.
83
- link_parsers = []
84
- # Include only the tags that belong to the current branch.
85
- use_branch_tags = false
86
- # Order releases topologically instead of chronologically.
87
- topo_order = false
88
- # Order commits topologically instead of chronologically.
89
- topo_order_commits = true
90
- # Order of commits in each group/release within the changelog.
91
- # Allowed values: newest, oldest
92
- sort_commits = "oldest"
93
- # Process submodules commits
94
- recurse_submodules = false
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- set -o errexit
4
- set -o pipefail
5
-
6
- LATEST_VERSION=$(node -p -e "require('./package.json').version")
7
-
8
- if [ "$1" = "stdout" ]; then
9
- git-cliff --output - --unreleased --tag $LATEST_VERSION
10
- else
11
- git-cliff --output './CHANGELOG.md' --tag $LATEST_VERSION
12
- fi