📝 docs(bot): Auto sync agents & plugin to readme

This commit is contained in:
lobehubbot
2026-02-06 17:53:21 +00:00
parent 521ecdd047
commit 5cae71eda7
2 changed files with 48 additions and 79 deletions

View File

@@ -1,4 +1,11 @@
[
{
"children": {
"fixes": ["Fixed in community pluings tab the lobehub skills not display."]
},
"date": "2026-02-06",
"version": "2.1.19"
},
{
"children": {},
"date": "2026-02-04",
@@ -42,9 +49,7 @@
},
{
"children": {
"fixes": [
"Hide password features when AUTH_DISABLE_EMAIL_PASSWORD is set."
]
"fixes": ["Hide password features when AUTH_DISABLE_EMAIL_PASSWORD is set."]
},
"date": "2026-02-02",
"version": "2.1.11"
@@ -56,54 +61,42 @@
},
{
"children": {
"fixes": [
"Use oauth2.link for generic OIDC provider account linking."
]
"fixes": ["Use oauth2.link for generic OIDC provider account linking."]
},
"date": "2026-02-02",
"version": "2.1.9"
},
{
"children": {
"improvements": [
"Improve tasks display."
]
"improvements": ["Improve tasks display."]
},
"date": "2026-02-01",
"version": "2.1.8"
},
{
"children": {
"fixes": [
"Add missing description parameter docs in Notebook system prompt."
]
"fixes": ["Add missing description parameter docs in Notebook system prompt."]
},
"date": "2026-02-01",
"version": "2.1.7"
},
{
"children": {
"improvements": [
"Improve local-system tool implement."
]
"improvements": ["Improve local-system tool implement."]
},
"date": "2026-02-01",
"version": "2.1.6"
},
{
"children": {
"fixes": [
"Slove the group member agents cant set skills problem."
]
"fixes": ["Slove the group member agents cant set skills problem."]
},
"date": "2026-01-31",
"version": "2.1.5"
},
{
"children": {
"improvements": [
"Update i18n, Update Kimi K2.5 & Qwen3 Max Thinking models."
]
"improvements": ["Update i18n, Update Kimi K2.5 & Qwen3 Max Thinking models."]
},
"date": "2026-01-31",
"version": "2.1.4"
@@ -115,63 +108,49 @@
},
{
"children": {
"fixes": [
"Fix feishu sso provider."
]
"fixes": ["Fix feishu sso provider."]
},
"date": "2026-01-30",
"version": "2.1.2"
},
{
"children": {
"fixes": [
"Correct desktop download URL path."
]
"fixes": ["Correct desktop download URL path."]
},
"date": "2026-01-30",
"version": "2.1.1"
},
{
"children": {
"features": [
"Refactor cron job UI and use runtime enableBusinessFeatures flag."
]
"features": ["Refactor cron job UI and use runtime enableBusinessFeatures flag."]
},
"date": "2026-01-30",
"version": "2.1.0"
},
{
"children": {
"improvements": [
"Fix usage table display issues."
]
"improvements": ["Fix usage table display issues."]
},
"date": "2026-01-29",
"version": "2.0.13"
},
{
"children": {
"fixes": [
"Group publish to market should set local group market identifer."
]
"fixes": ["Group publish to market should set local group market identifer."]
},
"date": "2026-01-29",
"version": "2.0.12"
},
{
"children": {
"improvements": [
"Fix group task render."
]
"improvements": ["Fix group task render."]
},
"date": "2026-01-29",
"version": "2.0.11"
},
{
"children": {
"fixes": [
"Add ExtendParamsTypeSchema for enhanced model settings."
]
"fixes": ["Add ExtendParamsTypeSchema for enhanced model settings."]
},
"date": "2026-01-29",
"version": "2.0.10"
@@ -183,9 +162,7 @@
},
{
"children": {
"fixes": [
"Fix inbox agent in mobile."
]
"fixes": ["Fix inbox agent in mobile."]
},
"date": "2026-01-28",
"version": "2.0.8"
@@ -197,27 +174,21 @@
},
{
"children": {
"fixes": [
"The klavis in onboarding connect timeout fixed."
]
"fixes": ["The klavis in onboarding connect timeout fixed."]
},
"date": "2026-01-27",
"version": "2.0.6"
},
{
"children": {
"fixes": [
"Update the artifact prompt."
]
"fixes": ["Update the artifact prompt."]
},
"date": "2026-01-27",
"version": "2.0.5"
},
{
"children": {
"fixes": [
"Rename docker image and update docs for v2."
]
"fixes": ["Rename docker image and update docs for v2."]
},
"date": "2026-01-27",
"version": "2.0.4"
@@ -233,9 +204,7 @@
},
{
"children": {
"fixes": [
"Slove the recentTopicLinkError."
]
"fixes": ["Slove the recentTopicLinkError."]
},
"date": "2026-01-27",
"version": "2.0.2"

View File

@@ -258,28 +258,6 @@ export const agentGroupRouter = router({
}
}),
/**
* Get agent group detail by identifier
* GET /market/agent-group/:identifier
*/
getAgentGroupDetail: agentGroupProcedure
.input(z.object({ identifier: z.string() }))
.query(async ({ input, ctx }) => {
log('getAgentGroupDetail input: %O', input);
try {
const response = await ctx.marketSDK.agentGroups.getAgentGroupDetail(input.identifier);
return response;
} catch (error) {
log('Error getting agent group detail: %O', error);
throw new TRPCError({
cause: error,
code: 'INTERNAL_SERVER_ERROR',
message: error instanceof Error ? error.message : 'Failed to get agent group detail',
});
}
}),
/**
* Fork an agent group
* POST /market/agent-group/:identifier/fork
@@ -357,6 +335,28 @@ export const agentGroupRouter = router({
}
}),
/**
* Get agent group detail by identifier
* GET /market/agent-group/:identifier
*/
getAgentGroupDetail: agentGroupProcedure
.input(z.object({ identifier: z.string() }))
.query(async ({ input, ctx }) => {
log('getAgentGroupDetail input: %O', input);
try {
const response = await ctx.marketSDK.agentGroups.getAgentGroupDetail(input.identifier);
return response;
} catch (error) {
log('Error getting agent group detail: %O', error);
throw new TRPCError({
cause: error,
code: 'INTERNAL_SERVER_ERROR',
message: error instanceof Error ? error.message : 'Failed to get agent group detail',
});
}
}),
/**
* Get the fork source of an agent group
* GET /market/agent-group/:identifier/fork-source