ask-coding-harness 0.2.1 → 0.2.3

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: 69387c402be4baf7feac38128c4ba8c8e5ef9b45990fb1e2ac6c6c88ae2475a4
4
- data.tar.gz: 195abd511e806b952d02a1b17da3c3373371d6e7c54b294a571390684e74e6e3
3
+ metadata.gz: 3642c256e3be9406fe7d020139db65dc3c6ab97f2c09bcdd4bf00d929edba6cc
4
+ data.tar.gz: baed064491fc51f5e3d8411b682d1ccbc5f98836dc94addb9c7a70baacee539a
5
5
  SHA512:
6
- metadata.gz: 6631d79089e2d2c94d78431f6c2b831d63a76dd9e03e76ba1976ffe58153b48c09fb88c1976ee1699e47ae32a29952a3457a85ba986c1a05749828ef971e7030
7
- data.tar.gz: 75c4e27cf9e1ed89cfae4f0db8973aeb5ce18c29ad553e8d875eac7b05f7aa6372d7f6dc4208ff781a7c7c1aa734caba15991c269cbc328118ab47cc8e8dea92
6
+ metadata.gz: b301c0e203f974f487c4c457366e216240366dcade8cb518890729614033791939c17691e57cdd14765783b14e7090ef90eff5f237a9549c863678d27aeab40a
7
+ data.tar.gz: ac8f6548c9a93b554eb54507201d9052f966505a5ea8750188e698d975ba3bb88db7b7681eea0777ddc31d2a56501aef6664aa984652d2e77af880e86953ad8e
data/README.md CHANGED
@@ -39,6 +39,32 @@ ach demo
39
39
  (the agent itself needs the server).
40
40
  - **Extensible** — other coding agents (Codex, Claude Code, ACP-based)
41
41
  plug in via `ask-coding-providers` by setting `ACH_ADAPTER=acp`.
42
+ - **Pi-style system prompts** — a composable prompt per workspace: default
43
+ or custom base, guidelines, `<project_context>` from AGENTS.md/CLAUDE.md
44
+ (walked to the root, like pi), an append section, and a
45
+ `Current working directory:` footer.
46
+ - **Declarative agents (ask-agent convention)** — drop an
47
+ `agents/<name>/` directory (agent.rb + instructions.md) into any
48
+ workspace; pick the agent from the composer and its instructions become
49
+ the system prompt, with its tools, skills, and model applied.
50
+
51
+ ## Declarative agents
52
+
53
+ The harness speaks the ask-agent `agents/` convention, per workspace:
54
+
55
+ ```
56
+ my-project/
57
+ ├── agents/
58
+ │ ├── refactorer/
59
+ │ │ ├── agent.rb # Ask::Agent::Definition subclass
60
+ │ │ └── instructions.md # becomes the system prompt base
61
+ │ └── shared/
62
+ │ └── tools/ # tools shared by all agents
63
+ ```
64
+
65
+ Select an agent from the composer picker (or send `agent:` with the chat
66
+ request); conversations remember it, and the session is built via
67
+ `Ask::Agent.new` so the definition's tools, skills, and model apply.
42
68
 
43
69
  ## The `ach` CLI
44
70
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ask
4
4
  module CodingHarness
5
- VERSION = "0.2.1"
5
+ VERSION = "0.2.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ask-coding-harness
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaka Ruto
@@ -29,14 +29,14 @@ dependencies:
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: '0.1'
32
+ version: 0.40.1
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '0.1'
39
+ version: 0.40.1
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: ask-coding-providers
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -99,14 +99,14 @@ dependencies:
99
99
  requirements:
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: '0.1'
102
+ version: 0.6.1
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - ">="
108
108
  - !ruby/object:Gem::Version
109
- version: '0.1'
109
+ version: 0.6.1
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: ask-tools-shell
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -303,7 +303,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
303
303
  - !ruby/object:Gem::Version
304
304
  version: '0'
305
305
  requirements: []
306
- rubygems_version: 4.0.3
306
+ rubygems_version: 4.0.18
307
307
  specification_version: 4
308
308
  summary: General-purpose coding agent in the browser
309
309
  test_files: []