Initial release v0.1

This commit is contained in:
SPTApyo 2026-02-21 20:43:30 +01:00
commit f9c05781e2
2 changed files with 43 additions and 0 deletions

21
.SRCINFO Normal file
View file

@ -0,0 +1,21 @@
pkgbase = stratos-cli
pkgdesc = Multi-Agent Autonomous Coding System for Terminal
pkgver = 2.5.0
pkgrel = 1
url = https://github.com/SPTApyo/stratos
arch = any
license = MIT
makedepends = python-build
makedepends = python-installer
makedepends = python-wheel
makedepends = python-setuptools
depends = python>=3.10
depends = python-rich
depends = python-dotenv
depends = python-readchar
depends = python-google-generativeai
depends = python-duckduckgo-search
source = https://github.com/SPTApyo/stratos/archive/refs/tags/v2.5.0.tar.gz
sha256sums = SKIP
pkgname = stratos-cli

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintainer: SPTApyo <laroussinabil.311@gmail.com>
pkgname=stratos-cli
pkgver=2.5.0
pkgrel=1
pkgdesc="Multi-Agent Autonomous Coding System for Terminal"
arch=('any')
url="https://github.com/SPTApyo/stratos"
license=('MIT')
depends=('python>=3.10' 'python-rich' 'python-dotenv' 'python-readchar' 'python-google-generativeai' 'python-duckduckgo-search')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools')
source=("https://github.com/SPTApyo/stratos/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('SKIP')
build() {
cd "stratos-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "stratos-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}