agent_skill_parser 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2224c369e94618cede997892493c8b809422e05668f0101fabf02eecd5b41859
4
- data.tar.gz: f7f78dbcd3e8784e97ecf66264895f2dc1869c6ca7a2f3f8b6893617b8199b01
3
+ metadata.gz: 4fcce10c47b87e5efe03ab6dc872bc488ee001534ba501c052f5c2100f9c8e52
4
+ data.tar.gz: 56858c4ea382bb52125e85a4e0c6438d7e4dbe914e734104a54a1664c07c6727
5
5
  SHA512:
6
- metadata.gz: 5005b0fe0044f0950c9386cc238b030b4165b72f9a85de12385e8d0f44ee1f374bd15fbe6f04b5cd89a37079b77865cca0c66353f12c3ec35aad8e3718ededef
7
- data.tar.gz: fcc54de836504d1afdbb8f7afb9ee0c7ff4e5d8f348f41599609935256482b6f80b2d353333aa378da7c6e15a8681f56aecfce915f3641bb4e5687f6c1faa85e
6
+ metadata.gz: d3ac9b7ccc368feba1da5ee522cd93181160897675253ae9cf383c340e084d50dc6333fde49972683e286aa4f9ea4e7269f582cc74c603d19a63ed327012056a
7
+ data.tar.gz: 1a1fe69e603d3f73a13bdcd9d1de14f93b8f2ed85c59ee2cb8fefd2c401528e47c027fff6c5b008f8cc5f7c9f277ec80b373952f58399a85a7bb14f1558f3b7d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [0.2.2] - 2026-02-04
2
+
3
+ - Extracted `NilFrontmatter` into its own file for better code organization
4
+
5
+ ## [0.2.1] - 2026-02-04
6
+
7
+ - Enabled RubyGems MFA requirement in gemspec
8
+ - Enabled new RuboCop cops by default
9
+ - Simplified `generate_llm.rb` script
10
+
1
11
  ## [0.2.0] - 2026-02-01
2
12
 
3
13
  - Added `generate_llm.rb` script to generate LLM content
@@ -26,16 +26,4 @@ module AgentSkillParser
26
26
  # allowed_tools: [AllowedTool.new(name: "bash", pattern: nil)]
27
27
  # )
28
28
  Frontmatter = Data.define(:name, :description, :license, :compatibility, :metadata, :allowed_tools)
29
-
30
- # Nil object for empty frontmatter.
31
- # Returned by FrontmatterParser when YAML string is empty or missing.
32
- # All fields are nil or empty to safely handle missing frontmatter.
33
- NilFrontmatter = Frontmatter.new(
34
- name: "",
35
- description: "",
36
- license: nil,
37
- compatibility: nil,
38
- metadata: {},
39
- allowed_tools: []
40
- ).freeze
41
29
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AgentSkillParser
4
+ # Nil object for empty frontmatter.
5
+ # Returned by FrontmatterParser when YAML string is empty or missing.
6
+ # All fields are nil or empty to safely handle missing frontmatter.
7
+ NilFrontmatter = Frontmatter.new(
8
+ name: "",
9
+ description: "",
10
+ license: nil,
11
+ compatibility: nil,
12
+ metadata: {},
13
+ allowed_tools: []
14
+ ).freeze
15
+ end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module AgentSkillParser
4
4
  # @return [String] gem version
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agent_skill_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucian Ghinda
@@ -64,11 +64,12 @@ files:
64
64
  - lib/agent_skill_parser/errors/validation.rb
65
65
  - lib/agent_skill_parser/frontmatter.rb
66
66
  - lib/agent_skill_parser/frontmatter_parser.rb
67
+ - lib/agent_skill_parser/nil_frontmatter.rb
67
68
  - lib/agent_skill_parser/parser.rb
68
69
  - lib/agent_skill_parser/skill.rb
69
70
  - lib/agent_skill_parser/validator.rb
70
71
  - lib/agent_skill_parser/version.rb
71
- - llm.txt
72
+ - llm.md
72
73
  - sig/agent_skill_parser.rbs
73
74
  homepage: https://github.com/lucianghinda/agent_skill_parser
74
75
  licenses:
@@ -78,6 +79,7 @@ metadata:
78
79
  homepage_uri: https://github.com/lucianghinda/agent_skill_parser
79
80
  source_code_uri: https://github.com/lucianghinda/agent_skill_parser
80
81
  changelog_uri: https://github.com/lucianghinda/agent_skill_parser/blob/main/CHANGELOG.md
82
+ rubygems_mfa_required: 'true'
81
83
  rdoc_options: []
82
84
  require_paths:
83
85
  - lib
@@ -92,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
94
  - !ruby/object:Gem::Version
93
95
  version: '0'
94
96
  requirements: []
95
- rubygems_version: 4.0.3
97
+ rubygems_version: 4.0.5
96
98
  specification_version: 4
97
99
  summary: Parse agent skill files with YAML frontmatter and markdown body for agent/AI
98
100
  systems
File without changes