ask-coding-harness 0.2.1 → 0.2.2
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 +4 -4
- data/README.md +26 -0
- data/lib/ask/coding_harness/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c2b7a9f1466dc3fc01ff25ed39608cedefefad961eb5e0a5a37e0d862470b51
|
|
4
|
+
data.tar.gz: 5efc285a6b25409b8968072da7ddc2381792ab4df672c2e37b88bc0274a7ac6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d03370dd00b1b663452f03c3ffd158de51f182993f2f92e93df16e1d4b6a6267dc3ff486af7101b0ede71f889f118d098d0448581fa654656d28fd349bc7d3a
|
|
7
|
+
data.tar.gz: 4b20acd85e79b4b7060013531e244d415940862f4af943b18a0eea8f6f970b6e308e610531ee24f2bba483c2b56e02e5a0dcdbd4939c26cdea9d249fa07b4778
|
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
|
|
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.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaka Ruto
|
|
@@ -99,14 +99,14 @@ dependencies:
|
|
|
99
99
|
requirements:
|
|
100
100
|
- - ">="
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version:
|
|
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:
|
|
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.
|
|
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: []
|