lex-microsoft_teams 0.6.17 → 0.6.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +7 -0
- data/.github/dependabot.yml +18 -0
- data/.github/workflows/ci.yml +20 -2
- data/CHANGELOG.md +10 -2
- data/CLAUDE.md +7 -4
- data/LICENSE +201 -21
- data/README.md +2 -1
- data/lib/legion/extensions/microsoft_teams/cli/auth.rb +3 -3
- data/lib/legion/extensions/microsoft_teams/helpers/browser_auth.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/helpers/permission_guard.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/helpers/session_manager.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/helpers/subscription_registry.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/helpers/token_cache.rb +4 -6
- data/lib/legion/extensions/microsoft_teams/runners/adaptive_cards.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/ai_insights.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/api_ingest.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/auth.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/bot.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/cache_ingest.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/channel_messages.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/channels.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/chats.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/local_cache.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/meetings.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/messages.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/ownership.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/people.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/presence.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/subscriptions.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/teams.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/runners/transcripts.rb +2 -2
- data/lib/legion/extensions/microsoft_teams/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 191314d46175bfd188ec33f1821071dd04522440eb54bb5450093904e27455fd
|
|
4
|
+
data.tar.gz: 461f5f6434c25a94c3715140827b22f6a23bce7705cb1128ddd756bbacb4dafd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0a5cdfb3d45c34f4165dc4af7e2f2195a8d10d6dfe022cfd9531825d1faa34e03e07b63dd4304cd0e43cb452e9478898ef47eaa0a81ad63effddf69d6a09ec2
|
|
7
|
+
data.tar.gz: cd317fd7a7c778065d905019c9648436285e2d00d04baff31cc1278d517412cc7ee2d893b7d4303bc8f00f0ea56a372ecdf32985ac5b2d7891cbc2b9b98eb4df
|
data/.github/CODEOWNERS
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: bundler
|
|
4
|
+
directory: /
|
|
5
|
+
schedule:
|
|
6
|
+
interval: weekly
|
|
7
|
+
day: monday
|
|
8
|
+
open-pull-requests-limit: 5
|
|
9
|
+
labels:
|
|
10
|
+
- "type:dependencies"
|
|
11
|
+
- package-ecosystem: github-actions
|
|
12
|
+
directory: /
|
|
13
|
+
schedule:
|
|
14
|
+
interval: weekly
|
|
15
|
+
day: monday
|
|
16
|
+
open-pull-requests-limit: 5
|
|
17
|
+
labels:
|
|
18
|
+
- "type:dependencies"
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -3,14 +3,32 @@ on:
|
|
|
3
3
|
push:
|
|
4
4
|
branches: [main]
|
|
5
5
|
pull_request:
|
|
6
|
+
schedule:
|
|
7
|
+
- cron: '0 9 * * 1'
|
|
6
8
|
|
|
7
9
|
jobs:
|
|
8
10
|
ci:
|
|
9
11
|
uses: LegionIO/.github/.github/workflows/ci.yml@main
|
|
10
12
|
|
|
13
|
+
lint:
|
|
14
|
+
uses: LegionIO/.github/.github/workflows/lint-patterns.yml@main
|
|
15
|
+
|
|
16
|
+
security:
|
|
17
|
+
uses: LegionIO/.github/.github/workflows/security-scan.yml@main
|
|
18
|
+
|
|
19
|
+
version-changelog:
|
|
20
|
+
uses: LegionIO/.github/.github/workflows/version-changelog.yml@main
|
|
21
|
+
|
|
22
|
+
dependency-review:
|
|
23
|
+
uses: LegionIO/.github/.github/workflows/dependency-review.yml@main
|
|
24
|
+
|
|
25
|
+
stale:
|
|
26
|
+
if: github.event_name == 'schedule'
|
|
27
|
+
uses: LegionIO/.github/.github/workflows/stale.yml@main
|
|
28
|
+
|
|
11
29
|
release:
|
|
12
|
-
needs: ci
|
|
30
|
+
needs: [ci, lint]
|
|
13
31
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
14
32
|
uses: LegionIO/.github/.github/workflows/release.yml@main
|
|
15
33
|
secrets:
|
|
16
|
-
rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
|
|
34
|
+
rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [0.6.19] - 2026-03-26
|
|
4
4
|
|
|
5
5
|
### Changed
|
|
6
|
-
-
|
|
6
|
+
- `TokenCache#vault_path` default now uses `users/` prefix: `users/{USER}/microsoft_teams/delegated_token` (where `{USER}` is `ENV.fetch('USER', 'default')`), aligning with Vault KV v2 policy structure that scopes secrets under per-user subpaths
|
|
7
|
+
|
|
8
|
+
## [0.6.18] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- `TokenCache` Vault path is now per-user (`{USER}/microsoft_teams/delegated_token`) instead of hardcoded `legionio/microsoft_teams/delegated_token`
|
|
7
12
|
|
|
8
13
|
## [0.6.17] - 2026-03-24
|
|
9
14
|
|
|
@@ -16,6 +21,9 @@
|
|
|
16
21
|
- Comprehensive specs for TraceRetriever (token budget, rank/dedup, age labels, graceful degradation)
|
|
17
22
|
- Bot specs updated to verify trace context retrieval and pass-through, and nil/graceful-degradation paths
|
|
18
23
|
|
|
24
|
+
### Changed
|
|
25
|
+
- Add `caller:` identity to `llm_chat` calls in bot and profile_ingest runners for pipeline attribution
|
|
26
|
+
|
|
19
27
|
## [0.6.15] - 2026-03-23
|
|
20
28
|
|
|
21
29
|
### Added
|
data/CLAUDE.md
CHANGED
|
@@ -10,7 +10,7 @@ Legion Extension that connects LegionIO to Microsoft Teams via Graph API and Bot
|
|
|
10
10
|
|
|
11
11
|
**GitHub**: https://github.com/LegionIO/lex-microsoft_teams
|
|
12
12
|
**License**: MIT
|
|
13
|
-
**Version**: 0.6.
|
|
13
|
+
**Version**: 0.6.18
|
|
14
14
|
|
|
15
15
|
## Architecture
|
|
16
16
|
|
|
@@ -61,6 +61,7 @@ Legion::Extensions::MicrosoftTeams
|
|
|
61
61
|
│ ├── BrowserAuth # Delegated OAuth orchestrator (PKCE, headless detection, browser launch, API hook detection)
|
|
62
62
|
│ ├── CallbackServer # Ephemeral TCP server for OAuth redirect callback
|
|
63
63
|
│ ├── PermissionGuard # Circuit breaker for 403 errors with exponential backoff
|
|
64
|
+
│ ├── TraceRetriever # Retrieves memory traces from the shared store for bot context (2000-token budget, strength-ranked dedup)
|
|
64
65
|
│ └── TransformDefinitions # lex-transformer definitions for conversation extraction and person summary
|
|
65
66
|
├── Hooks/
|
|
66
67
|
│ └── Auth # OAuth callback hook (mount '/callback') → /api/hooks/lex/microsoft_teams/auth/callback
|
|
@@ -76,7 +77,7 @@ Opt-in browser-based OAuth for delegated Microsoft Graph permissions. Two flows:
|
|
|
76
77
|
- **Authorization Code + PKCE** (primary): Opens browser for Entra ID login. When the Legion API is running, uses the hook URL (`/api/hooks/lex/microsoft_teams/auth/callback`) with `Legion::Events` for callback notification; otherwise falls back to an ephemeral local port via `CallbackServer`
|
|
77
78
|
- **Device Code** (fallback): Auto-selected in headless/SSH environments (no `DISPLAY`/`WAYLAND_DISPLAY`)
|
|
78
79
|
|
|
79
|
-
Tokens stored in Vault (`
|
|
80
|
+
Tokens stored in Vault at a per-user path (`{USER}/microsoft_teams/delegated_token`, where `{USER}` is the system username) with configurable pre-expiry silent refresh. CLI command: `legion auth teams`. Hook route: `GET|POST /api/hooks/lex/microsoft_teams/auth/callback` for daemon re-auth (routed through Ingress for RBAC/audit).
|
|
80
81
|
|
|
81
82
|
Key files: `Helpers::BrowserAuth` (orchestrator), `Helpers::CallbackServer` (ephemeral TCP), `Runners::Auth` (authorize_url, exchange_code, refresh_delegated_token, auth_callback), `Helpers::TokenCache` (delegated slot), `Hooks::Auth` (hook class with mount path).
|
|
82
83
|
|
|
@@ -128,9 +129,11 @@ User DMs the bot 1:1. Bot responds via legion-llm with multi-turn session contex
|
|
|
128
129
|
|
|
129
130
|
```
|
|
130
131
|
DirectChatPoller (5s) → AMQP exchange → MessageProcessor → Bot::handle_message
|
|
131
|
-
→ SessionManager.get_or_create → llm_session.ask(text) → Graph API reply
|
|
132
|
+
→ TraceRetriever.retrieve → SessionManager.get_or_create → llm_session.ask(text) → Graph API reply
|
|
132
133
|
```
|
|
133
134
|
|
|
135
|
+
`TraceRetriever` (v0.6.17) fetches memory traces from the shared store (sender, teams, chat-scoped domains) before each response. Up to a 2000-token budget; strength-ranked with deduplication. Appended to the resolved system prompt via `PromptResolver#resolve_prompt(trace_context:)`. Degrades gracefully when lex-memory is unavailable.
|
|
136
|
+
|
|
134
137
|
### Mode 2: Conversation Observer
|
|
135
138
|
User subscribes the bot to watch a human 1:1 conversation. Bot passively extracts tasks, context, and relationship data.
|
|
136
139
|
|
|
@@ -252,7 +255,7 @@ Optional framework dependencies (guarded with `defined?`, not in gemspec):
|
|
|
252
255
|
|
|
253
256
|
```bash
|
|
254
257
|
bundle install
|
|
255
|
-
bundle exec rspec #
|
|
258
|
+
bundle exec rspec # ~305 specs across 40 spec files (as of v0.6.18)
|
|
256
259
|
bundle exec rubocop # Clean
|
|
257
260
|
```
|
|
258
261
|
|
data/LICENSE
CHANGED
|
@@ -1,21 +1,201 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2021 Esity
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
data/README.md
CHANGED
|
@@ -115,12 +115,13 @@ gem install lex-microsoft_teams
|
|
|
115
115
|
|
|
116
116
|
**Helpers:**
|
|
117
117
|
- `SessionManager` — Multi-turn LLM session lifecycle with lex-memory persistence
|
|
118
|
-
- `PromptResolver` — Layered system prompt resolution (settings default -> mode -> per-conversation)
|
|
118
|
+
- `PromptResolver` — Layered system prompt resolution (settings default -> mode -> per-conversation -> trace context)
|
|
119
119
|
- `HighWaterMark` — Per-chat message deduplication via legion-cache
|
|
120
120
|
- `TokenCache` — In-memory OAuth token cache with pre-expiry refresh (app + delegated slots)
|
|
121
121
|
- `SubscriptionRegistry` — Conversation observation subscriptions (in-memory + lex-memory)
|
|
122
122
|
- `BrowserAuth` — Delegated OAuth orchestrator (PKCE, headless detection, browser launch)
|
|
123
123
|
- `CallbackServer` — Ephemeral TCP server for OAuth redirect callback
|
|
124
|
+
- `TraceRetriever` — Retrieves and formats memory traces as LLM context (2000-token budget, strength-ranked dedup)
|
|
124
125
|
|
|
125
126
|
### Delegated Authentication (v0.5.0)
|
|
126
127
|
|
|
@@ -8,8 +8,8 @@ module Legion
|
|
|
8
8
|
module MicrosoftTeams
|
|
9
9
|
module CLI
|
|
10
10
|
class Auth
|
|
11
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
12
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
11
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
12
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
13
13
|
|
|
14
14
|
def self.cli_alias
|
|
15
15
|
'teams'
|
|
@@ -74,7 +74,7 @@ module Legion
|
|
|
74
74
|
end
|
|
75
75
|
|
|
76
76
|
def store_token(result)
|
|
77
|
-
cache = Helpers::TokenCache.
|
|
77
|
+
cache = Helpers::TokenCache.instance
|
|
78
78
|
cache.store_delegated_token(result)
|
|
79
79
|
cache.save_to_vault
|
|
80
80
|
log.info('Token stored successfully')
|
|
@@ -13,8 +13,8 @@ module Legion
|
|
|
13
13
|
module MicrosoftTeams
|
|
14
14
|
module Helpers
|
|
15
15
|
class BrowserAuth
|
|
16
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
17
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
16
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
17
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
18
18
|
|
|
19
19
|
DEFAULT_SCOPES = [
|
|
20
20
|
'offline_access', 'openid', 'profile', 'email',
|
|
@@ -5,8 +5,8 @@ module Legion
|
|
|
5
5
|
module MicrosoftTeams
|
|
6
6
|
module Helpers
|
|
7
7
|
module PermissionGuard
|
|
8
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
9
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
8
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
9
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
10
10
|
|
|
11
11
|
BACKOFF_SCHEDULE = [60, 300, 1800, 7200, 28_800].freeze
|
|
12
12
|
|
|
@@ -8,8 +8,8 @@ module Legion
|
|
|
8
8
|
module Helpers
|
|
9
9
|
class SessionManager
|
|
10
10
|
include PromptResolver
|
|
11
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
12
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
11
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
12
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
13
13
|
|
|
14
14
|
DEFAULT_FLUSH_THRESHOLD = 20
|
|
15
15
|
DEFAULT_IDLE_TIMEOUT = 900
|
|
@@ -7,8 +7,8 @@ module Legion
|
|
|
7
7
|
module MicrosoftTeams
|
|
8
8
|
module Helpers
|
|
9
9
|
class SubscriptionRegistry
|
|
10
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
11
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
10
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
11
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
12
12
|
|
|
13
13
|
MEMORY_KEY = 'teams_bot_subscriptions'
|
|
14
14
|
|
|
@@ -10,11 +10,10 @@ module Legion
|
|
|
10
10
|
module MicrosoftTeams
|
|
11
11
|
module Helpers
|
|
12
12
|
class TokenCache
|
|
13
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
14
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
13
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
14
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
15
15
|
|
|
16
16
|
REFRESH_BUFFER = 60
|
|
17
|
-
DEFAULT_VAULT_PATH = 'legionio/microsoft_teams/delegated_token'
|
|
18
17
|
DEFAULT_LOCAL_DIR = File.join(Dir.home, '.legionio', 'tokens')
|
|
19
18
|
DEFAULT_LOCAL_FILE = File.join(DEFAULT_LOCAL_DIR, 'microsoft_teams.json')
|
|
20
19
|
|
|
@@ -274,9 +273,8 @@ module Legion
|
|
|
274
273
|
def vault_path
|
|
275
274
|
settings = teams_auth_settings
|
|
276
275
|
delegated = settings[:delegated]
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
delegated[:vault_path] || DEFAULT_VAULT_PATH
|
|
276
|
+
custom = delegated[:vault_path] if delegated.is_a?(Hash)
|
|
277
|
+
custom || "users/#{ENV.fetch('USER', 'default')}/microsoft_teams/delegated_token"
|
|
280
278
|
end
|
|
281
279
|
|
|
282
280
|
def local_token_path
|
|
@@ -50,8 +50,8 @@ module Legion
|
|
|
50
50
|
}
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
54
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
53
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
54
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
end
|
|
@@ -39,8 +39,8 @@ module Legion
|
|
|
39
39
|
{ result: response.body }
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
43
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
42
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
43
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
end
|
|
@@ -101,8 +101,8 @@ module Legion
|
|
|
101
101
|
{ result: { stored: stored || 0, skipped: skipped || 0, error: e.message } }
|
|
102
102
|
end
|
|
103
103
|
|
|
104
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
105
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
104
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
105
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
106
106
|
|
|
107
107
|
MAX_CHAT_PAGES = 10
|
|
108
108
|
|
|
@@ -136,8 +136,8 @@ module Legion
|
|
|
136
136
|
HTML
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
140
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
139
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
140
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
141
141
|
end
|
|
142
142
|
end
|
|
143
143
|
end
|
|
@@ -417,8 +417,8 @@ module Legion
|
|
|
417
417
|
nil
|
|
418
418
|
end
|
|
419
419
|
|
|
420
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
421
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
420
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
421
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
422
422
|
end
|
|
423
423
|
end
|
|
424
424
|
end
|
|
@@ -47,8 +47,8 @@ module Legion
|
|
|
47
47
|
{ result: { stored: stored, skipped: skipped, latest_time: latest_time } }
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
51
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
50
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
51
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
52
52
|
|
|
53
53
|
private
|
|
54
54
|
|
|
@@ -43,8 +43,8 @@ module Legion
|
|
|
43
43
|
{ result: response.body }
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
47
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
46
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
47
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
48
48
|
end
|
|
49
49
|
end
|
|
50
50
|
end
|
|
@@ -44,8 +44,8 @@ module Legion
|
|
|
44
44
|
{ result: response.body }
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
48
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
47
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
48
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
end
|
|
@@ -42,8 +42,8 @@ module Legion
|
|
|
42
42
|
{ result: response.body }
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
46
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
45
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
46
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
49
|
end
|
|
@@ -34,8 +34,8 @@ module Legion
|
|
|
34
34
|
{ result: extractor.stats }
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
38
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
37
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
38
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
39
39
|
|
|
40
40
|
private
|
|
41
41
|
|
|
@@ -59,8 +59,8 @@ module Legion
|
|
|
59
59
|
{ result: response.body }
|
|
60
60
|
end
|
|
61
61
|
|
|
62
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
63
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
62
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
63
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
64
64
|
end
|
|
65
65
|
end
|
|
66
66
|
end
|
|
@@ -39,8 +39,8 @@ module Legion
|
|
|
39
39
|
{ result: response.body }
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
43
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
42
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
43
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
end
|
|
@@ -66,8 +66,8 @@ module Legion
|
|
|
66
66
|
(resp.body || {}).fetch('value', [])
|
|
67
67
|
end
|
|
68
68
|
|
|
69
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
70
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
69
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
70
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
71
71
|
end
|
|
72
72
|
end
|
|
73
73
|
end
|
|
@@ -24,8 +24,8 @@ module Legion
|
|
|
24
24
|
{ error: e.message }
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
28
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
27
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
28
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
end
|
|
@@ -22,8 +22,8 @@ module Legion
|
|
|
22
22
|
{ availability: 'Offline', activity: 'OffWork', error: e.message, fetched_at: Time.now.utc }
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
26
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
25
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
26
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
end
|
|
@@ -67,8 +67,8 @@ module Legion
|
|
|
67
67
|
)
|
|
68
68
|
end
|
|
69
69
|
|
|
70
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
71
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
70
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
71
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
72
72
|
end
|
|
73
73
|
end
|
|
74
74
|
end
|
|
@@ -24,8 +24,8 @@ module Legion
|
|
|
24
24
|
{ result: response.body }
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
28
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
27
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
28
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
end
|
|
@@ -36,8 +36,8 @@ module Legion
|
|
|
36
36
|
{ result: response.body }
|
|
37
37
|
end
|
|
38
38
|
|
|
39
|
-
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers) &&
|
|
40
|
-
Legion::Extensions::Helpers.const_defined?(:Lex)
|
|
39
|
+
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
40
|
+
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
41
41
|
end
|
|
42
42
|
end
|
|
43
43
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lex-microsoft_teams
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esity
|
|
@@ -156,6 +156,8 @@ executables: []
|
|
|
156
156
|
extensions: []
|
|
157
157
|
extra_rdoc_files: []
|
|
158
158
|
files:
|
|
159
|
+
- ".github/CODEOWNERS"
|
|
160
|
+
- ".github/dependabot.yml"
|
|
159
161
|
- ".github/workflows/ci.yml"
|
|
160
162
|
- ".gitignore"
|
|
161
163
|
- ".rspec"
|