agent-devkit 0.0.1 → 0.0.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.
package/README.md CHANGED
@@ -1,12 +1,181 @@
1
- # Agent DevKit npm package
1
+ # Agent DevKit
2
2
 
3
- Install the Agent DevKit CLI from npm:
3
+ Agent DevKit is a CLI runtime for specialist AI agents, capabilities,
4
+ provider-aware automations and local host adapters for Codex and Claude.
5
+
6
+ The npm package installs the canonical command:
7
+
8
+ ```bash
9
+ agent
10
+ ```
11
+
12
+ ## Install
4
13
 
5
14
  ```bash
6
15
  npm install -g agent-devkit
16
+ ```
17
+
18
+ Validate the installation:
19
+
20
+ ```bash
7
21
  agent --version
8
22
  agent doctor
9
23
  ```
10
24
 
11
- The npm package installs the canonical `agent` command. The runtime remains
12
- provider-aware and stores credentials only by reference.
25
+ Expected version for this release:
26
+
27
+ ```text
28
+ agent 0.0.2
29
+ ```
30
+
31
+ ## Quick Start
32
+
33
+ List available agents and capabilities:
34
+
35
+ ```bash
36
+ agent agents list
37
+ agent capabilities list
38
+ agent providers list
39
+ agent llm list
40
+ agent commands list
41
+ ```
42
+
43
+ Install project-local host artifacts for Codex, Claude Code and Claude
44
+ Desktop/Claude.ai:
45
+
46
+ ```bash
47
+ cd /path/to/your/project
48
+ agent install project --target . --host all
49
+ agent doctor --project .
50
+ ```
51
+
52
+ Run a natural-language task:
53
+
54
+ ```bash
55
+ agent "analise o problema relatado no card 9900"
56
+ ```
57
+
58
+ Natural-language mode requires an LLM backend. Deterministic commands such as
59
+ `agent agents list`, `agent capabilities list`, `agent doctor`, `agent provider`
60
+ and `agent run` do not require an LLM.
61
+
62
+ ## Configure LLM Backends
63
+
64
+ Agent DevKit stores references to credentials, not secret values. API keys stay
65
+ in environment variables.
66
+
67
+ OpenAI:
68
+
69
+ ```bash
70
+ export OPENAI_API_KEY="..."
71
+ agent llm configure openai --api-key-env OPENAI_API_KEY --model gpt-5 --set-default
72
+ agent llm doctor
73
+ ```
74
+
75
+ Anthropic:
76
+
77
+ ```bash
78
+ export ANTHROPIC_API_KEY="..."
79
+ agent llm configure anthropic --api-key-env ANTHROPIC_API_KEY --model claude-sonnet-4-5 --set-default
80
+ ```
81
+
82
+ OpenRouter:
83
+
84
+ ```bash
85
+ export OPENROUTER_API_KEY="..."
86
+ agent llm configure openrouter --api-key-env OPENROUTER_API_KEY --model openai/gpt-5 --set-default
87
+ ```
88
+
89
+ Local or host-authenticated backends:
90
+
91
+ ```bash
92
+ agent llm configure ollama --base-url http://localhost:11434/v1 --model qwen2.5-coder --set-default
93
+ agent llm configure codex-cli --set-default
94
+ agent llm configure claude-code --set-default
95
+ ```
96
+
97
+ ## Configure Providers
98
+
99
+ Configure only the provider you need for a task. Missing optional providers are
100
+ reported as partial diagnostics and do not break local discovery.
101
+
102
+ Azure DevOps:
103
+
104
+ ```bash
105
+ export AZURE_DEVOPS_ORG="your-org"
106
+ export AZURE_DEVOPS_PAT="..."
107
+ agent provider configure azure-devops --env AZURE_DEVOPS_ORG --env AZURE_DEVOPS_PAT
108
+ agent provider doctor azure-devops
109
+ ```
110
+
111
+ AWS:
112
+
113
+ ```bash
114
+ export AWS_PROFILE="default"
115
+ export AWS_REGION="us-east-1"
116
+ agent provider configure aws --env AWS_PROFILE --env AWS_REGION
117
+ agent provider doctor aws
118
+ ```
119
+
120
+ TOPdesk:
121
+
122
+ ```bash
123
+ export TOPDESK_BASE_URL="https://your-instance.topdesk.net"
124
+ export TOPDESK_USERNAME="user"
125
+ export TOPDESK_APP_PASSWORD="..."
126
+ agent provider configure topdesk --env TOPDESK_BASE_URL --env TOPDESK_USERNAME --env TOPDESK_APP_PASSWORD
127
+ agent provider doctor topdesk
128
+ ```
129
+
130
+ You can also inspect a credentials file without printing secret values:
131
+
132
+ ```bash
133
+ agent credential resolve topdesk --env-file ./topdesk.env
134
+ ```
135
+
136
+ ## Deterministic Capability Runs
137
+
138
+ Use `agent run` when you want direct execution without natural-language routing:
139
+
140
+ ```bash
141
+ agent run azure-devops-orchestrator read-card --project "Project" --id 9900 --include-comments
142
+ agent run aws-cloudwatch-log-analyzer search-log-events --help
143
+ ```
144
+
145
+ Inspect a capability contract before running it:
146
+
147
+ ```bash
148
+ agent inspect azure-devops-orchestrator read-card
149
+ ```
150
+
151
+ ## Memory
152
+
153
+ Agent DevKit can keep local usage memory for routines and source preferences:
154
+
155
+ ```bash
156
+ agent memory show
157
+ agent memory reset --all
158
+ ```
159
+
160
+ ## Host Installation
161
+
162
+ Install only one host adapter when needed:
163
+
164
+ ```bash
165
+ agent install project --target . --host codex
166
+ agent install project --target . --host claude-code
167
+ agent install project --target . --host claude-desktop
168
+ agent install global --host all
169
+ ```
170
+
171
+ Preview writes without touching the filesystem:
172
+
173
+ ```bash
174
+ agent install project --target . --host all --dry-run --json
175
+ ```
176
+
177
+ ## Links
178
+
179
+ - GitHub: https://github.com/jhenriquedev/agent-devkit
180
+ - npm: https://www.npmjs.com/package/agent-devkit
181
+ - License: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-devkit",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Agent DevKit CLI runtime for specialist AI agents, capabilities and provider-aware automations.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/runtime/README.md CHANGED
@@ -11,6 +11,137 @@ Nome publico do projeto no GitHub: `agent-devkit`. Nome do produto:
11
11
  > versionados e prontos para uso, com baixo consumo de contexto, decisoes mais
12
12
  > consistentes e artefatos padronizados.
13
13
 
14
+ ## Instalacao rapida
15
+
16
+ Instale o CLI publicado no npm:
17
+
18
+ ```bash
19
+ npm install -g agent-devkit
20
+ ```
21
+
22
+ Valide a instalacao:
23
+
24
+ ```bash
25
+ agent --version
26
+ agent doctor
27
+ ```
28
+
29
+ O pacote instala o comando canonico `agent`. O nome do pacote npm e
30
+ `agent-devkit`.
31
+
32
+ ## Primeiro uso
33
+
34
+ Comandos deterministicos nao precisam de LLM configurada:
35
+
36
+ ```bash
37
+ agent agents list
38
+ agent capabilities list
39
+ agent providers list
40
+ agent llm list
41
+ agent doctor
42
+ ```
43
+
44
+ Instale os artefatos locais do Agent DevKit no projeto atual:
45
+
46
+ ```bash
47
+ cd /caminho/do/projeto
48
+ agent install project --target . --host all
49
+ agent doctor --project .
50
+ ```
51
+
52
+ Use prompts livres pelo proprio comando `agent`:
53
+
54
+ ```bash
55
+ agent "analise o problema relatado no card 9900"
56
+ ```
57
+
58
+ Esse modo usa backend LLM. Se nenhum backend estiver configurado, a CLI informa
59
+ como configurar ou como executar uma capability deterministica com `agent run`.
60
+
61
+ ## Configurar LLM
62
+
63
+ O Agent DevKit nao grava chaves em claro. Ele salva referencias para variaveis
64
+ de ambiente em `~/.ai-devkit/config.json`.
65
+
66
+ OpenAI:
67
+
68
+ ```bash
69
+ export OPENAI_API_KEY="..."
70
+ agent llm configure openai --api-key-env OPENAI_API_KEY --model gpt-5 --set-default
71
+ agent llm doctor
72
+ ```
73
+
74
+ Anthropic:
75
+
76
+ ```bash
77
+ export ANTHROPIC_API_KEY="..."
78
+ agent llm configure anthropic --api-key-env ANTHROPIC_API_KEY --model claude-sonnet-4-5 --set-default
79
+ ```
80
+
81
+ OpenRouter:
82
+
83
+ ```bash
84
+ export OPENROUTER_API_KEY="..."
85
+ agent llm configure openrouter --api-key-env OPENROUTER_API_KEY --model openai/gpt-5 --set-default
86
+ ```
87
+
88
+ LLMs locais ou CLIs autenticadas:
89
+
90
+ ```bash
91
+ agent llm configure ollama --base-url http://localhost:11434/v1 --model qwen2.5-coder --set-default
92
+ agent llm configure codex-cli --set-default
93
+ agent llm configure claude-code --set-default
94
+ ```
95
+
96
+ ## Configurar providers
97
+
98
+ Providers tambem sao configurados por referencia. Configure apenas o que for
99
+ necessario para a tarefa; o agente pode seguir com fallback quando um provider
100
+ opcional nao estiver disponivel.
101
+
102
+ Azure DevOps:
103
+
104
+ ```bash
105
+ export AZURE_DEVOPS_ORG="sua-org"
106
+ export AZURE_DEVOPS_PAT="..."
107
+ agent provider configure azure-devops --env AZURE_DEVOPS_ORG --env AZURE_DEVOPS_PAT
108
+ agent provider doctor azure-devops
109
+ ```
110
+
111
+ AWS:
112
+
113
+ ```bash
114
+ export AWS_PROFILE="default"
115
+ export AWS_REGION="us-east-1"
116
+ agent provider configure aws --env AWS_PROFILE --env AWS_REGION
117
+ agent provider doctor aws
118
+ ```
119
+
120
+ TOPdesk:
121
+
122
+ ```bash
123
+ export TOPDESK_BASE_URL="https://sua-instancia.topdesk.net"
124
+ export TOPDESK_USERNAME="usuario"
125
+ export TOPDESK_APP_PASSWORD="..."
126
+ agent provider configure topdesk --env TOPDESK_BASE_URL --env TOPDESK_USERNAME --env TOPDESK_APP_PASSWORD
127
+ agent provider doctor topdesk
128
+ ```
129
+
130
+ Exemplo de uso deterministico com uma capability:
131
+
132
+ ```bash
133
+ agent run azure-devops-orchestrator read-card --project "Projeto" --id 9900 --include-comments
134
+ ```
135
+
136
+ Comandos uteis:
137
+
138
+ ```bash
139
+ agent commands list
140
+ agent inspect azure-devops-orchestrator read-card
141
+ agent memory show
142
+ agent memory reset --all
143
+ ```
144
+
14
145
  ## O que e
15
146
 
16
147
  O Agent DevKit e um repositorio agent-native. Seu produto principal nao e uma pasta
@@ -1,3 +1,3 @@
1
1
  """Public CLI implementation for AI DevKit."""
2
2
 
3
- __version__ = "0.0.1"
3
+ __version__ = "0.0.2"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "claude-code-ai-devkit",
3
3
  "name": "AI DevKit",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "Thin Claude Code adapter for routing software support, infrastructure, data, and development tasks through the local AI DevKit runtime.",
6
6
  "runtime": {
7
7
  "command": "agent",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "claude-skill-ai-devkit",
3
3
  "name": "AI DevKit Claude Skill",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "Skill bundle for Claude Desktop and Claude.ai to route support, infrastructure, data, documentation, and development work through AI DevKit practices.",
6
6
  "runtime": {
7
7
  "command": "agent",
@@ -34,7 +34,7 @@ python3 scripts/validate-repo.py --json
34
34
  python3 scripts/validate-repo.py --strict
35
35
  python3 scripts/mvp-readiness.py
36
36
  python3 scripts/mvp-readiness.py --json
37
- npm run release:verify -- v0.0.1
37
+ npm run release:verify -- v0.0.2
38
38
  ```
39
39
 
40
40
  ## Regras
@@ -63,7 +63,7 @@ function run(command, args, options = {}) {
63
63
  async function main() {
64
64
  const [rawVersion] = process.argv.slice(2);
65
65
  if (!rawVersion) {
66
- throw new Error("Usage: npm run release:verify -- v0.0.1");
66
+ throw new Error("Usage: npm run release:verify -- v0.0.2");
67
67
  }
68
68
 
69
69
  const version = normalizeVersion(rawVersion);