agentcat-api 0.0.1

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: c7b1f5c728d7bc6339e19c754b402ec14c931a78f1df1a9f8b4b4a37d67ca81f
4
+ data.tar.gz: 1f1d0fb4638e40f7c76f56bb1777a0744b13707bc6ec2445892d5f4aa908b421
5
+ SHA512:
6
+ metadata.gz: 9f1c04b046ec3570efca0237b376600d9b126bfcfd04b451edf6064ab49b1699ca878a01edcf6adf799a49ba3af50ce45d6a7f6520bf7425da1a63cf35505386
7
+ data.tar.gz: 779e1403ab7454d5cef82b0e4bfad2aeb74a0570e3502c1ea81f46c0779b47b933607659898837892e23d2c54e123df93b39bd3b8d831dcb9f91fa2e3a3c940d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 AgentCat, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # agentcat-api
2
+
3
+ Generated HTTP client for the [AgentCat](https://agentcat.com) API.
4
+
5
+ > **Status: placeholder.** This gem reserves the `agentcat-api` name for the
6
+ > generated Ruby API client, which will ship as `1.0.0`. It has no functionality
7
+ > yet — do not depend on it.
8
+
9
+ ## You probably want `agentcat` instead
10
+
11
+ This is the low-level generated transport, produced from the AgentCat OpenAPI
12
+ specification. It is consumed by the [`agentcat`](https://rubygems.org/gems/agentcat)
13
+ gem, which is the supported integration surface for MCP server authors.
14
+
15
+ Its siblings in other languages:
16
+
17
+ | Language | Generated client |
18
+ | ---------- | --------------------------------------------------------------------------- |
19
+ | TypeScript | [`agentcat-api`](https://www.npmjs.com/package/agentcat-api) |
20
+ | Python | [`agentcat-api`](https://pypi.org/project/agentcat-api/) |
21
+ | Go | [`agentcat-go-api`](https://github.com/agentcathq/agentcat-go-api) |
22
+
23
+ ## License
24
+
25
+ MIT © AgentCat, Inc.
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/agentcat/api/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "agentcat-api"
7
+ spec.version = AgentCat::API::VERSION
8
+ spec.authors = ["AgentCat, Inc."]
9
+ spec.email = ["support@agentcat.com"]
10
+
11
+ spec.summary = "AgentCat API - generated Ruby client (placeholder)"
12
+ spec.description = "Generated HTTP client for the AgentCat API, consumed by the " \
13
+ "agentcat gem. This release reserves the gem name for the " \
14
+ "generated client, which is in active development. Use the " \
15
+ "agentcat gem instead."
16
+ spec.homepage = "https://agentcat.com"
17
+ spec.license = "MIT"
18
+
19
+ spec.required_ruby_version = ">= 2.7.0"
20
+
21
+ spec.metadata = {
22
+ "homepage_uri" => "https://agentcat.com",
23
+ "source_code_uri" => "https://github.com/agentcathq/agentcat-ruby-api",
24
+ "bug_tracker_uri" => "https://github.com/agentcathq/agentcat-ruby-api/issues",
25
+ "documentation_uri" => "https://docs.agentcat.com",
26
+ "rubygems_mfa_required" => "true"
27
+ }
28
+
29
+ # Deliberately scoped under lib/agentcat/api/ only: the `agentcat` gem owns
30
+ # lib/agentcat.rb and lib/agentcat/version.rb, and shipping either path here
31
+ # would shadow it on the load path.
32
+ spec.files = %w[README.md LICENSE agentcat-api.gemspec] + Dir["lib/agentcat/api.rb", "lib/agentcat/api/**/*.rb"]
33
+ spec.require_paths = ["lib"]
34
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AgentCat
4
+ module API
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "api/version"
4
+
5
+ module AgentCat
6
+ # Generated HTTP client for the AgentCat API.
7
+ #
8
+ # This release is a name placeholder. The real client is generated from the
9
+ # AgentCat OpenAPI specification and is consumed by the `agentcat` gem rather
10
+ # than used directly. It will ship as version 1.0.0, tracking its siblings:
11
+ #
12
+ # TypeScript — agentcat-api (npm)
13
+ # Python — agentcat-api (PyPI)
14
+ # Go — github.com/agentcathq/agentcat-go-api
15
+ #
16
+ # Depend on the `agentcat` gem instead; it wraps this one.
17
+ module API
18
+ # Raised by any entry point until the generated client ships.
19
+ class NotYetImplementedError < StandardError; end
20
+
21
+ # Placeholder for the generated client constructor.
22
+ #
23
+ # @raise [NotYetImplementedError] always, in this release.
24
+ def self.new(*, **)
25
+ raise NotYetImplementedError,
26
+ "The AgentCat Ruby API client is not released yet. This gem reserves " \
27
+ "the name for the generated client. See https://agentcat.com for status."
28
+ end
29
+ end
30
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: agentcat-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - AgentCat, Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Generated HTTP client for the AgentCat API, consumed by the agentcat
14
+ gem. This release reserves the gem name for the generated client, which is in active
15
+ development. Use the agentcat gem instead.
16
+ email:
17
+ - support@agentcat.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE
23
+ - README.md
24
+ - agentcat-api.gemspec
25
+ - lib/agentcat/api.rb
26
+ - lib/agentcat/api/version.rb
27
+ homepage: https://agentcat.com
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: https://agentcat.com
32
+ source_code_uri: https://github.com/agentcathq/agentcat-ruby-api
33
+ bug_tracker_uri: https://github.com/agentcathq/agentcat-ruby-api/issues
34
+ documentation_uri: https://docs.agentcat.com
35
+ rubygems_mfa_required: 'true'
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 2.7.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.0.3.1
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: AgentCat API - generated Ruby client (placeholder)
55
+ test_files: []