cardinal-ai 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: 446132d856f0db6104e2df65f61510d970b1b1044ac86eb49b7e87da174ef04b
4
+ data.tar.gz: 48b6a1a1014d1dc6b354fac38aba8ab4dd49cbdba8c921fddaae884f9e425d16
5
+ SHA512:
6
+ metadata.gz: 7d83e1cc64403965c0856577ae139effc8d73ea971aa2f25e7a73cc1c4b82419bd90f6b00c283ba84d5b545ec6a5cf4827bd5e7d675e7a7a1a180544b96ed5cd
7
+ data.tar.gz: 9fbe3ab30ea42683d7726bbabb8d8ccfdb9329cc0429487c885341634a450dfe9952f7e8af29bcf2c0e1d1088dfac3997a38803dceebb4f144c977d8309dcd55
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Cardinal ๐Ÿฆโ€๐Ÿ”ฅ
2
+
3
+ **A Kanban board where dragging a card to "In Progress" hires an AI to actually do the task.**
4
+
5
+ Cardinal is a Kanban board where the cards do the work. It's a little tool you fire up
6
+ inside any code repo, and it gives you a board like Trello โ€” but the columns aren't just
7
+ labels, they're rules. The far-left column is where you dump ideas. The next one has an AI
8
+ assistant that helps you think each idea through. And when you drag a card into
9
+ "In Progress," that card *becomes* its own AI agent โ€” it spins up in a sandbox, writes the
10
+ code on its own branch, reports its progress right on the card, and asks you questions when
11
+ it's stuck. When it's done, you drag the card to Review, look at the pull request it made,
12
+ and either send it back with notes or drag it to Done โ€” which merges the code.
13
+
14
+ It's not an app you sign up for. It's more like having a small dev team living in your
15
+ repo, and the board is how you manage them. Dragging a card left to right literally *is*
16
+ assigning the work, supervising it, and shipping it.
17
+
18
+ ## Status
19
+
20
+ Early but real: the full card lifecycle works end to end. Cards become agents in
21
+ execution columns (plan approval โ†’ work โ†’ questions back to you โ†’ draft PR), you review
22
+ and request changes (revision runs on the same branch), and dragging to Done squash-merges
23
+ the PR. Column rules, one-shot AI maintenance agents, a policy editor behind every
24
+ column's gear icon, run heartbeats + sweeping, and `cardinal up` for spinning a board up
25
+ inside any repo. PRs #2 and #3 of this very repo were written by Cardinal cards. The
26
+ design document โ€” architecture, decisions, roadmap โ€” lives in [cardinal.md](cardinal.md).
27
+
28
+ ## Stack
29
+
30
+ Rails 8.1 ยท Ruby 3.4 ยท SQLite (the whole instance lives in `.cardinal/`) ยท Hotwire.
31
+ No database server, no Redis, no sign-in.
32
+
33
+ ## Running it
34
+
35
+ ```sh
36
+ bundle install
37
+ bin/rails db:prepare db:seed
38
+ bin/rails server
39
+ ```
40
+
41
+ Then open http://localhost:3000 (or set `PORT`).
42
+
43
+ *Drag it to Done.*
@@ -0,0 +1,3 @@
1
+ module Cardinal
2
+ VERSION = "0.0.1"
3
+ end
data/lib/cardinal.rb ADDED
@@ -0,0 +1,8 @@
1
+ require_relative "cardinal/version"
2
+
3
+ # Cardinal โ€” a Kanban board where dragging a card to "In Progress" hires an
4
+ # AI agent to actually do the task. This version is a placeholder reserving
5
+ # the gem name while the packaged release is prepared; see the repository:
6
+ # https://github.com/palamedes/cardinal
7
+ module Cardinal
8
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cardinal-ai
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jason Ellis
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: 'Cardinal is a local, per-repo AI Kanban tool: columns are policies,
13
+ cards become Claude-powered worker agents, and work ships as pull requests. This
14
+ release is a placeholder reserving the gem name while the packaged app is prepared
15
+ โ€” watch the repo.'
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/cardinal.rb
22
+ - lib/cardinal/version.rb
23
+ homepage: https://github.com/palamedes/cardinal
24
+ licenses: []
25
+ metadata:
26
+ homepage_uri: https://github.com/palamedes/cardinal
27
+ source_code_uri: https://github.com/palamedes/cardinal
28
+ bug_tracker_uri: https://github.com/palamedes/cardinal/issues
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.2'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.9
44
+ specification_version: 4
45
+ summary: A Kanban board where dragging a card to In Progress hires an AI agent to
46
+ do the task.
47
+ test_files: []