Skip to content

Commit 70f61f5

Browse files
authored
Merge pull request #391 from axivo/docs/website-update
docs: framework geolocation
2 parents 138601d + 56eb159 commit 70f61f5

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

claude/content/wiki/getting-started.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ Before using the platform, set up the local environment with the required depend
3939
{
4040
"env": {
4141
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "50000",
42-
"FRAMEWORK_PROFILE": "DEVELOPER",
43-
"FRAMEWORK_TIMEZONE": "America/Montreal"
42+
"FRAMEWORK_PROFILE": "DEVELOPER"
4443
}
4544
}
4645
```
@@ -52,6 +51,7 @@ Before using the platform, set up the local environment with the required depend
5251
"env": {
5352
"FRAMEWORK_CONVERSATION_PATH": "/Users/username/Documents/claude/conversations",
5453
"FRAMEWORK_DIARY_PATH": "/Users/username/Documents/claude/diary",
54+
"FRAMEWORK_GEOLOCATION": "{'city': 'Montreal', 'country': 'Canada', 'timezone': 'America/Toronto'}",
5555
"FRAMEWORK_PACKAGE_PATH": "/Users/username/Downloads",
5656
"FRAMEWORK_TEMPLATE_PATH": "/Users/username/project/.claude/data/templates"
5757
}
@@ -73,8 +73,7 @@ Before using the platform, set up the local environment with the required depend
7373
{
7474
"env": {
7575
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "50000",
76-
"FRAMEWORK_PROFILE": "DEVELOPER",
77-
"FRAMEWORK_TIMEZONE": "America/Montreal"
76+
"FRAMEWORK_PROFILE": "DEVELOPER"
7877
}
7978
}
8079
```
@@ -86,6 +85,7 @@ Before using the platform, set up the local environment with the required depend
8685
"env": {
8786
"FRAMEWORK_CONVERSATION_PATH": "/home/username/Documents/claude/conversations",
8887
"FRAMEWORK_DIARY_PATH": "/home/username/Documents/claude/diary",
88+
"FRAMEWORK_GEOLOCATION": "{'city': 'Montreal', 'country': 'Canada', 'timezone': 'America/Toronto'}",
8989
"FRAMEWORK_PACKAGE_PATH": "/home/username/Downloads",
9090
"FRAMEWORK_TEMPLATE_PATH": "/home/username/project/.claude/data/templates"
9191
}
@@ -108,8 +108,7 @@ Before using the platform, set up the local environment with the required depend
108108
{
109109
"env": {
110110
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "50000",
111-
"FRAMEWORK_PROFILE": "DEVELOPER",
112-
"FRAMEWORK_TIMEZONE": "America/Montreal"
111+
"FRAMEWORK_PROFILE": "DEVELOPER"
113112
}
114113
}
115114
```
@@ -121,6 +120,7 @@ Before using the platform, set up the local environment with the required depend
121120
"env": {
122121
"FRAMEWORK_CONVERSATION_PATH": "C:/Users/username/Documents/claude/conversations",
123122
"FRAMEWORK_DIARY_PATH": "C:/Users/username/Documents/claude/diary",
123+
"FRAMEWORK_GEOLOCATION": "{'city': 'Montreal', 'country': 'Canada', 'timezone': 'America/Toronto'}",
124124
"FRAMEWORK_PACKAGE_PATH": "C:/Users/username/Downloads",
125125
"FRAMEWORK_TEMPLATE_PATH": "C:/Users/username/project/.claude/data/templates"
126126
}
@@ -131,7 +131,7 @@ Before using the platform, set up the local environment with the required depend
131131
<!-- prettier-ignore-end -->
132132

133133
> [!TIP]
134-
> Default paths are set to current project `.claude/data` directory. The `FRAMEWORK_TEMPLATE_PATH` setting allows the end-user to set a different [`templates`](https://{{< param variables.repository.home >}}/tree/{{< param variables.repository.tag >}}/plugins/{{< param variables.plugins.framework.init.plugin >}}/skills/{{< param variables.skills.methodology >}}/templates) path for each project, instead of using the standard templates.
134+
> Default paths are set to current project `.claude/data` directory. The `FRAMEWORK_TEMPLATE_PATH` setting allows the end-user to set a different [`templates`](https://{{< param variables.repository.home >}}/tree/{{< param variables.repository.tag >}}/plugins/{{< param variables.plugins.framework.init.plugin >}}/skills/{{< param variables.skills.methodology >}}/templates) path for each project, instead of using the standard templates. The `FRAMEWORK_GEOLOCATION` setting allows the end-user to override [IPinfo](https://ipinfo.io) geolocation API call with a custom location.
135135
136136
Six domain-specific [profiles](/wiki/guide/components/memory/#memory-profiles) are available for different collaboration domains:
137137

@@ -275,7 +275,6 @@ Follow these steps to generate the platform capability files:
275275

276276
```bash
277277
export FRAMEWORK_PROFILE="DEVELOPER"
278-
export FRAMEWORK_TIMEZONE="America/Montreal"
279278
node /mnt/skills/user/{{< param variables.skills.initialization >}}/scripts/loader
280279
```
281280

0 commit comments

Comments
 (0)