packages feed

A-gent 0.11.0.13 → 0.11.0.14

raw patch · 4 files changed

+17/−5 lines, 4 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Agent.Data.ANSI.EscapeCode: data Background
+ Agent.Data.ANSI.EscapeCode: data Blink
+ Agent.Data.ANSI.EscapeCode: data Foreground
+ Agent.Data.ANSI.EscapeCode: data SelectGraphicRendition
+ Agent.Data.ANSI.EscapeCode: type Bright = Bool
+ Agent.LLM.Action: type FileLine = String

Files

A-gent.cabal view
@@ -9,7 +9,7 @@ build-type: Simple                                                name: A-gent-version: 0.11.0.13+version: 0.11.0.14  synopsis: Polite & well educated LLM agent with excellent manners that always behaves well description: Polite and well educated LLM agent with excellent manners that always behaves well
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for Λ-gent +## 0.11.0.14 -- 2026-05-14++* Ensured not to expose internal types. We import and re-export for type+  signatures, but not the constructors.+ ## 0.11.0.13 -- 2026-05-14  * Updated scripts from website with changes from `0.11.0.12`.
src/Agent/Data/ANSI/EscapeCode.hs view
@@ -14,7 +14,14 @@ --------------------------------------------------------------------------------  module Agent.Data.ANSI.EscapeCode-  ( Colour+  ( -- * Type signatures+    SelectGraphicRendition+  , Blink+  , Bright+  , Background+  , Foreground+    -- * Enums+  , Colour     ( Black     , Red     , Green@@ -28,9 +35,8 @@     ( Slow     , Fast     )-  --+    -- * Methods   , sgr-  --   , foreground   , background   , bold
src/Agent/LLM/Action.hs view
@@ -18,6 +18,7 @@     Action   , TextToFile   , File+  , FileLine   , FilePaths   , Root     -- * Methods@@ -33,7 +34,7 @@  -------------------------------------------------------------------------------- -import           Internal.LLM        ( File, FilePaths, Root )+import           Internal.LLM        ( File, FileLine, FilePaths, Root ) import qualified Internal.LLM        as INT import           Internal.LLM.Action ( Action, TextToFile ) import qualified Internal.LLM.Action as ACT