Squashed '.claude/llm-functions/' content from commit 616d8d8

git-subtree-dir: .claude/llm-functions
git-subtree-split: 616d8d84c5565fdb66d8782ae5ba56d994bfa82a
This commit is contained in:
2026-03-27 09:14:17 +01:00
commit 2f1d437723
80 changed files with 5498 additions and 0 deletions

24
.github/ISSUE_TEMPLATE/add_agent.md vendored Normal file
View File

@@ -0,0 +1,24 @@
---
name: Add a New AI Agent
about: Propose an idea or submit a new AI agent for inclusion
title: '[Agent Request] Add <Agent Name>'
labels: enhancement
assignees: ''
---
<!-- Your issue may already be reported! Please search for it before creating one. -->
**Agent Description**
<!-- Summarize the purpose and functionality of the proposed agent in a few concise sentences. -->
**Agent Conversation Starters**
<!-- Provide examples of natural language prompts a user may use to interact with the agent. -->
**Agent Tools**
<!-- List and describe the tools (if any) your agent requires or uses. -->
<!-- foo: Brief description of tool foo -->
<!-- bar: Brief description of tool bar -->
**Additional context**
<!-- Include details to help reviewers understand the feature request, such as relevant documentation, use cases, or screenshots. -->

28
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,28 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
<!-- Your issue may already be reported! Please search for it before creating one. -->
**Describe the bug**
<!-- A clear and concise description of what the bug is.
**To Reproduce**
<!-- Steps to reproduce the behavior, including any relevant code snippets. -->
**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->
**Screenshots/Logs**
<!-- If applicable, add screenshots to help explain your problem. -->
**Environment**
<!-- Please run `argc version` and paste the output -->
**Additional context**
<!-- Add any other context about the problem here. -->

View File

@@ -0,0 +1,22 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''
---
<!-- Your issue may already be reported! Please search for it before creating one. -->
**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->
**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->

51
.github/workflows/ci.yaml vendored Normal file
View File

@@ -0,0 +1,51 @@
name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
all:
name: All
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: sigoden/install-binary@v1
with:
repo: sigoden/argc
- name: Check versions
run: argc version
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Link web-search and code-interpreter
run: |
argc link-web-search web_search_perplexity.sh
argc link-code-interpreter execute_py_code.py
- name: Run Test
run: argc test
env:
PYTHONIOENCODING: utf-8