Agentdb Learning Plugins

Wtyczki treningowe RL dla AgentDB, ale udokumentowane polecenia CLI już nie istnieją

Autor: spencermarx · spencermarx/open-code-review

Tested · Didn't pass

Agentdb Learning Plugins — Wtyczki treningowe RL dla AgentDB, ale udokumentowane polecenia CLI już nie istnieją

Co robi ten skill

Dokumentuje przepływ pracy CLI/API do tworzenia i trenowania „wtyczek” uczenia wzmocnionego (Decision Transformer, Q-Learning, SARSA, Actor-Critic itp.) na pakiecie npm AgentDB. Ma na celu uruchamianie się podczas budowania agentów samouczących się, implementacji RL lub optymalizacji zachowania agenta na podstawie zarejestrowanych doświadczeń. Podczas testowania każde udokumentowane polecenie CLI zwróciło „Unknown command” w stosunku do wersji agentdb@latest, którą sama umiejętność instaluje, a udokumentowany import API nie powiódł się.

Raport z testu

Zlokalizowano umiejętność w .claude/skills/agentdb-learning/SKILL.md (nazwa frontmatter „AgentDB Learning Plugins” pasuje do sluga; katalog to agentdb-learning). Frontmatter parsowany czysto i brak dołączonych skryptów lub zakodowanych na stałe ścieżek; brak zagrożeń bezpieczeństwa. Zainstalowałem agentdb@latest (rozwiązuje się do 3.0.0-alpha.20, wersji, którą pobrałyby własne polecenia `npx agentdb@latest` umiejętności) i uruchomiłem wszystkie cztery udokumentowane polecenia CLI bezpośrednio na dist/src/cli/agentdb-cli.js: create-plugin, list-plugins, plugin-info i list-templates każde zwróciło „Unknown command”. Rzeczywiste CLI v3 ma zupełnie inną powierzchnię (learn/train/skill/learner), bez szablonów wtyczek ani flagi `-t decision-transformer`. Zainstalowałem również agentic-flow@latest i wypróbowałem udokumentowany import API; `require('agentic-flow/reasoningbank')` zgłosiło „Cannot find package 'better-sqlite3'”. Tak więc zarówno punkty wejścia CLI, jak i API, których uczy umiejętność, są niefunkcjonalne w obecnej formie.

Testowano: 2026-07-31 · Claude Code 2.x (agent harness)

Instalacja

git clone --depth 1 https://github.com/spencermarx/open-code-review.git /tmp/agentdb-learning-plugins-src
mkdir -p ~/.claude/skills
cp -R /tmp/agentdb-learning-plugins-src/.claude/skills/agentdb-learning ~/.claude/skills/agentdb-learning-plugins
# Requires Node 18+. The skill body drives external npm tooling, not bundled scripts:
#   npx agentdb@latest ...   and   import { createAgentDBAdapter } from 'agentic-flow/reasoningbank'
# WARNING (observed 2026-07-31): the CLI commands this skill is built around —
#   create-plugin, list-templates, list-plugins, plugin-info — all return
#   "Unknown command" in agentdb@latest (published as 3.0.0-alpha.20). The current
#   CLI exposes a different surface (learn/train/skill/learner), not a plugin system.
# The documented API path also fails on a clean install: importing
#   'agentic-flow/reasoningbank' throws "Cannot find package 'better-sqlite3'".

Komendy i przykładowe prompty

  • /agentdb-learning-pluginsWtyczki treningowe RL dla AgentDB, ale udokumentowane polecenia CLI już nie istnieją

Skille uruchamiają się na zwykłe polecenia — bez komend do zapamiętania. Po instalacji aktywują go prompty takie jak te (po angielsku):

  • Train a Q-Learning agent with AgentDB
  • Set up a Decision Transformer for this agent
  • Optimize agent behavior using SARSA