@lousy-agents/lint 5.11.3 → 5.11.4

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -905,7 +905,8 @@ __webpack_require__.d(classic_schemas_namespaceObject, {
905
905
  "skill/name-mismatch": "error",
906
906
  "skill/missing-description": "error",
907
907
  "skill/invalid-description": "error",
908
- "skill/missing-allowed-tools": "warn"
908
+ "skill/missing-allowed-tools": "warn",
909
+ "skill/missing-argument-hint": "warn"
909
910
  }
910
911
  };
911
912
 
@@ -37794,13 +37795,16 @@ const AgentSkillFrontmatterSchema = schemas_object({
37794
37795
  license: schemas_string().optional(),
37795
37796
  compatibility: schemas_string().max(500, "Compatibility must be 500 characters or fewer").optional(),
37796
37797
  metadata: record(schemas_string(), schemas_string()).optional(),
37797
- "allowed-tools": schemas_string().optional()
37798
+ "allowed-tools": schemas_string().optional(),
37799
+ "argument-hint": schemas_string().optional()
37798
37800
  });
37799
37801
  const RECOMMENDED_FIELDS = [
37800
- "allowed-tools"
37802
+ "allowed-tools",
37803
+ "argument-hint"
37801
37804
  ];
37802
37805
  const RECOMMENDED_FIELD_RULE_IDS = {
37803
- "allowed-tools": "skill/missing-allowed-tools"
37806
+ "allowed-tools": "skill/missing-allowed-tools",
37807
+ "argument-hint": "skill/missing-argument-hint"
37804
37808
  };
37805
37809
  class LintSkillFrontmatterUseCase {
37806
37810
  gateway;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lousy-agents/lint",
3
- "version": "5.11.3",
3
+ "version": "5.11.4",
4
4
  "description": "Programmatic lint API for validating AI coding assistant configurations — skills, agents, hooks, and instructions",
5
5
  "type": "module",
6
6
  "repository": {