This commit is contained in:
Chirag Aggarwal
2026-02-12 17:24:16 +05:30
parent 17d3abb287
commit efaf44c677
2 changed files with 14 additions and 7 deletions
+5 -5
View File
@@ -274,7 +274,7 @@ return [
'key' => 'agent-skills',
'name' => 'AgentSkills',
'version' => '0.1.0',
'url' => 'https://github.com/ChiragAgg5k/appwrite-agent-skills.git',
'url' => 'https://github.com/appwrite/agent-skills.git',
'enabled' => true,
'beta' => false,
'dev' => false,
@@ -282,11 +282,11 @@ return [
'family' => APP_SDK_PLATFORM_CONSOLE,
'prism' => 'agent-skills',
'source' => \realpath(__DIR__ . '/../sdks/console-agent-skills'),
'gitUrl' => 'git@github.com:ChiragAgg5k/appwrite-agent-skills.git',
'gitRepoName' => 'appwrite-agent-skills',
'gitUserName' => 'ChiragAgg5k',
'gitUrl' => 'git@github.com:appwrite/agent-skills.git',
'gitRepoName' => 'agent-skills',
'gitUserName' => 'appwrite',
'gitBranch' => 'dev',
'repoBranch' => 'master',
'repoBranch' => 'main',
'changelog' => \realpath(__DIR__ . '/../../docs/sdks/agent-skills/CHANGELOG.md'),
],
],
+9 -2
View File
@@ -1,5 +1,12 @@
# Changelog Log
# Changelog
## 0.1.0
- Initial release
Initial release compatible with Appwrite server 1.8.x. Follows the [Agent Skills Open Standard](https://agentskills.io/home).
- Added agent skills for 9 languages: TypeScript, Python, PHP, Go, Kotlin, Swift, Ruby, .NET, and Dart
- Coverage for Account, Users, TablesDB, Storage, Teams, Functions, and Realtime services
- Query builder with filtering, sorting, pagination, and field selection
- Permission and Role helpers for access control
- SSR authentication patterns for major frameworks
- Consistent error handling via `AppwriteException` across all languages