@aacombarro89/praxis 0.1.14 → 0.1.16
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/LICENSE +202 -0
- package/NOTICE +2 -0
- package/dist/emit.d.ts +5 -1
- package/dist/emit.js +7 -2
- package/dist/emit.js.map +1 -1
- package/dist/packages.d.ts +6 -1
- package/dist/packages.js +9 -3
- package/dist/packages.js.map +1 -1
- package/dist/path-safety.d.ts +20 -0
- package/dist/path-safety.js +47 -0
- package/dist/path-safety.js.map +1 -0
- package/dist/sync.js +9 -8
- package/dist/sync.js.map +1 -1
- package/npm-shrinkwrap.json +1401 -0
- package/package.json +6 -3
- package/packages/external/drawio/plugins.yaml +5 -1
- package/packages/external/ponytail/plugins.yaml +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aacombarro89/praxis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "A CLI that installs an AI methodology layer into a codebase.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
-
"packages"
|
|
11
|
+
"packages",
|
|
12
|
+
"NOTICE",
|
|
13
|
+
"npm-shrinkwrap.json"
|
|
12
14
|
],
|
|
13
15
|
"engines": {
|
|
14
16
|
"node": ">=20"
|
|
@@ -25,7 +27,8 @@
|
|
|
25
27
|
"test:watch": "vitest",
|
|
26
28
|
"prepublishOnly": "npm run build"
|
|
27
29
|
},
|
|
28
|
-
"license": "
|
|
30
|
+
"license": "Apache-2.0",
|
|
31
|
+
"author": "Pragmatic Labs",
|
|
29
32
|
"dependencies": {
|
|
30
33
|
"@clack/prompts": "^1.5.1",
|
|
31
34
|
"commander": "^14.0.3",
|
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
# Praxis never executes anything here — this is committable config that Claude
|
|
3
3
|
# Code itself reads on folder-trust to offer installing/enabling the plugin.
|
|
4
4
|
# Verified against github.com/Agents365-ai/365-skills, which genuinely ships no
|
|
5
|
-
# tags
|
|
5
|
+
# tags: ref is the repository's HEAD commit SHA (git ls-remote, 2026-07-18),
|
|
6
|
+
# sanity-checked to still contain the drawio skill this package wraps
|
|
7
|
+
# (plugins/drawio in .claude-plugin/marketplace.json). A tag is a useful
|
|
8
|
+
# label, not an integrity boundary — an unpinned ref is not an option either.
|
|
6
9
|
targets: [claude-code]
|
|
7
10
|
marketplace:
|
|
8
11
|
name: 365-skills
|
|
9
12
|
source:
|
|
10
13
|
source: github
|
|
11
14
|
repo: Agents365-ai/365-skills
|
|
15
|
+
ref: 3fa2281be5cef1f757b94cc16a0a5fe83f425f16 # HEAD as of 2026-07-18
|
|
12
16
|
enable:
|
|
13
17
|
- drawio@365-skills
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# Declarative Claude Code plugin-marketplace reference (src/plugins.ts).
|
|
2
2
|
# Praxis never executes anything here — this is committable config that Claude
|
|
3
3
|
# Code itself reads on folder-trust to offer installing/enabling the plugin.
|
|
4
|
-
# Verified against github.com/DietrichGebert/ponytail
|
|
4
|
+
# Verified against github.com/DietrichGebert/ponytail: ref is the full commit
|
|
5
|
+
# SHA that tag v4.7.0 points to (git ls-remote, 2026-07-18) — a tag is a
|
|
6
|
+
# useful label, not an integrity boundary; the SHA is what's actually pinned.
|
|
5
7
|
targets: [claude-code, codex]
|
|
6
8
|
marketplace:
|
|
7
9
|
name: ponytail
|
|
8
10
|
source:
|
|
9
11
|
source: github
|
|
10
12
|
repo: DietrichGebert/ponytail
|
|
11
|
-
ref: v4.7.0
|
|
13
|
+
ref: adad50d9b393926b2dd5ed7225dcb1848b9df408 # v4.7.0
|
|
12
14
|
enable:
|
|
13
15
|
- ponytail@ponytail
|
|
14
16
|
codex:
|