clyro 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 20831dad836ff2a425416cf89b1238e8ada1e6ada1e22525fc01a5a9acb87341
4
+ data.tar.gz: d4733eb25836c03f74c603bdbd662b053bef3e00460c578cdd87bc31c402dcba
5
+ SHA512:
6
+ metadata.gz: 8eec320aeb23a394ef32633f4a2b6f40ced3951416d30d13e6f2a8f85f70d3d5f283203ee6f581d000e82f88ad114876b037b5705969bafd4f84cc606be5cbba
7
+ data.tar.gz: 7419f75d6bae77bab4ebfc816311c9781e315ae4740af58632cbe435c9fae959680602211385f242dd7c082ff35a93d699981c7162a852eb6aae8edeb55c10b3
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-01-30
4
+
5
+ - Initial release
@@ -0,0 +1,10 @@
1
+ # Code of Conduct
2
+
3
+ "clyro" follows [The Ruby Community Conduct Guideline](https://www.ruby-lang.org/en/conduct) in all "collaborative space", which is defined as community communications channels (such as mailing lists, submitted patches, commit comments, etc.):
4
+
5
+ * Participants will be tolerant of opposing views.
6
+ * Participants must ensure that their language and actions are free of personal attacks and disparaging personal remarks.
7
+ * When interpreting the words and actions of others, participants should always assume good intentions.
8
+ * Behaviour which can be reasonably considered harassment will not be tolerated.
9
+
10
+ If you have any concerns about behaviour within this project, please contact us at ["sumanth@promptcloud.com"](mailto:"sumanth@promptcloud.com").
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Clyro
2
+
3
+ Clyro - The intelligent core for AI agents
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Clyro
4
+ VERSION = "0.1.0"
5
+ end
data/lib/clyro.rb ADDED
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "clyro/version"
4
+
5
+ module Clyro
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+
9
+ class << self
10
+ def hello
11
+ "Hello from Clyro"
12
+ end
13
+ end
14
+
15
+ end
data/sig/clyro.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Clyro
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: clyro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sumanth
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rake
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '13.0'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '13.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: rspec
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rubocop
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.21'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.21'
54
+ description: Clyro - The intelligent core for AI agents
55
+ email:
56
+ - hello@clyro.dev
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - CHANGELOG.md
62
+ - CODE_OF_CONDUCT.md
63
+ - README.md
64
+ - Rakefile
65
+ - lib/clyro.rb
66
+ - lib/clyro/version.rb
67
+ - sig/clyro.rbs
68
+ homepage: http://clyro.dev/
69
+ licenses:
70
+ -
71
+ metadata:
72
+ homepage_uri: http://clyro.dev/
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 3.2.0
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.7.2
88
+ specification_version: 4
89
+ summary: 'Clyro: The Agent Kernel'
90
+ test_files: []