ob-labs/agentseek

Add keyword filtering to `agentseek create --list-templates`

Closed

#86 opened on Jun 16, 2026

 (0 comments) (0 reactions) (0 assignees)Python (24 forks)github user discovery
comp:clienhancementgood first issue

Repository metrics

Stars
 (153 stars)
PR merge metrics
 (Avg merge 3d 14h) (26 merged PRs in 30d)

Description

Summary

Add a keyword filter to template listing so users can quickly find relevant templates as the catalogue grows.

Requirements

  • Support agentseek create --list-templates --filter <keyword>.
  • Match the keyword against template specs and descriptions.
  • Filtering should work for all templates and for a selected type, for example agentseek create langchain --list-templates --filter langgraph.
  • Matching should be case-insensitive.
  • Keep the current unfiltered output unchanged.

Acceptance Criteria

  • Filtered output only includes matching templates.
  • Non-matching filters print a clear empty-result message.
  • Unit tests cover all-template filtering, type-specific filtering, and no-match output.

Contributor guide