pasika 0.5.14 → 0.5.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/README.md CHANGED
@@ -11,7 +11,7 @@ docs/
11
11
  repository-policy.md # repo-wide code and documentation requirements (Policy)
12
12
  code-organization-guide/ # placement, extraction, module conventions
13
13
  documentation-guide/ # how documents themselves are written
14
- framework-adoption-guide/ # adopting and updating the framework
14
+ pasika-adoption-guide/ # adopting and updating the framework
15
15
  styling-guide/ # Tailwind theme, composition, variants, states
16
16
  scripts/
17
17
  registry.json # requirement → enforcement, keyed by content hash
@@ -5907,7 +5907,7 @@ import path48 from "path";
5907
5907
  var PASIKA_REPO = "Bredansky/pasika";
5908
5908
  var BASE_REQUIRED_DOCS = [
5909
5909
  { name: "documentation-guide", path: "docs/documentation-guide" },
5910
- { name: "framework-adoption-guide", path: "docs/framework-adoption-guide" },
5910
+ { name: "pasika-adoption-guide", path: "docs/pasika-adoption-guide" },
5911
5911
  { name: "repository-policy", path: "docs/repository-policy.md" }
5912
5912
  ];
5913
5913
  var NEXTJS_REQUIRED_DOCS = [
@@ -6122,7 +6122,10 @@ var zirkaConfig = {
6122
6122
  };
6123
6123
  var documentationConfig = {
6124
6124
  files: ["docs/**/*.md"],
6125
- ignores: ["**/_*/**"],
6125
+ // vulyk-generated agent files are not authored docs: with per-directory
6126
+ // targets they can land under docs/ (e.g. docs/AGENTS.md) and must not be
6127
+ // held to the documentation guide.
6128
+ ignores: ["**/_*/**", "**/AGENTS.md", "**/CLAUDE.md"],
6126
6129
  plugins: {
6127
6130
  markdown,
6128
6131
  pasika: pasikaPlugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pasika",
3
- "version": "0.5.14",
3
+ "version": "0.5.16",
4
4
  "description": "Reusable agent setup package",
5
5
  "repository": {
6
6
  "type": "git",