-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathdoap.xml
More file actions
122 lines (100 loc) · 4.87 KB
/
Copy pathdoap.xml
File metadata and controls
122 lines (100 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Project xmlns="http://usefulinc.com/ns/doap#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:xmpp="https://linkmauve.fr/ns/xmpp-doap#"
xmlns:schema="https://schema.org/">
<name>Ethora</name>
<created>2021-06-21</created>
<shortdesc xml:lang="en">Open-source chat & messaging platform with AI agents / chatbots</shortdesc>
<description xml:lang="en">Ethora is an open-source XMPP-based chat & messaging platform with a built-in AI agent / chatbot framework. Ships SDKs for React, native iOS/Android, React Native, and WordPress, plus an MCP server. Self-host the server (Node.js / ejabberd) or use Ethora Cloud.</description>
<homepage rdf:resource="https://ethora.com/"/>
<download-page rdf:resource="https://github.com/dappros/ethora/releases"/>
<bug-database rdf:resource="https://github.com/dappros/ethora/issues"/>
<support-forum rdf:resource="https://discord.gg/Sm6bAHA3ZC"/>
<schema:logo rdf:resource="https://raw.githubusercontent.com/dappros/ethora-mcp-server/main/assets/icon-400.png"/>
<license rdf:resource="https://github.com/dappros/ethora/blob/main/LICENSE"/>
<language>en</language>
<programming-language>JavaScript</programming-language>
<programming-language>TypeScript</programming-language>
<programming-language>Kotlin</programming-language>
<programming-language>Swift</programming-language>
<programming-language>PHP</programming-language>
<os>Linux</os>
<os>Browser</os>
<os>Android</os>
<os>iOS</os>
<category rdf:resource="https://linkmauve.fr/ns/xmpp-doap#category-server"/>
<category rdf:resource="https://linkmauve.fr/ns/xmpp-doap#category-library"/>
<maintainer>
<foaf:Person>
<foaf:name>Taras Filatov</foaf:name>
<foaf:homepage rdf:resource="https://github.com/tarasfilatov"/>
</foaf:Person>
</maintainer>
<repository>
<GitRepository>
<browse rdf:resource="https://github.com/dappros/ethora"/>
<location rdf:resource="https://github.com/dappros/ethora.git"/>
</GitRepository>
</repository>
<!--
Core XMPP. Ethora's server side is built on ejabberd, so it
inherits the standard XMPP core (RFC 6120 / 6121) and a wide
set of XEPs from ejabberd. The <implements> entries below
list the XEPs that Ethora's own server APIs and SDKs
actively rely on / surface.
-->
<implements rdf:resource="https://xmpp.org/rfcs/rfc6120.html"/>
<implements rdf:resource="https://xmpp.org/rfcs/rfc6121.html"/>
<!-- XEP-0030: Service Discovery -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0030.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0045: Multi-User Chat -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0045.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0085: Chat State Notifications (typing indicators) -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0085.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0184: Message Delivery Receipts -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0184.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0313: Message Archive Management -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0313.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0363: HTTP File Upload -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0363.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
<!-- XEP-0444: Message Reactions -->
<implements>
<xmpp:SupportedXep>
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0444.html"/>
<xmpp:status>complete</xmpp:status>
</xmpp:SupportedXep>
</implements>
</Project>
</rdf:RDF>