Skip to content

Commit 4432160

Browse files
committed
Wiki
1 parent b0490b2 commit 4432160

File tree

2 files changed

+42
-40
lines changed

2 files changed

+42
-40
lines changed

PRODUCTS.md

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Deep Product Strategy & Solutions
22

3+
> [Investment Documentation](https://github.com/deep-foundation/deep/wiki)
4+
35
> Universal solution for working with any meaning, transformed into a suite of practical products
46
57
## 🎯 Vision
@@ -8,7 +10,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
810

911
## 🌟 Product Line
1012

11-
### 1. 🎯 [Deep Core](PRODUCTS/core.md)
13+
### 1. 🎯 Deep Core
1214
*Universal lightweight meaning agent*
1315
- Standalone TypeScript/JavaScript library
1416
- Embeddable in any application
@@ -18,7 +20,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
1820
- **Target**: Developers
1921
- **Model**: Open Source (Public Domain)
2022

21-
### 2. 🌐 [Deep Browser Extension](PRODUCTS/browser-extension.md)
23+
### 2. 🌐 Deep Browser Extension
2224
*Your gateway to semantic web browsing*
2325
- Collects browsing history and actions
2426
- Injects Deep components into web pages
@@ -27,7 +29,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
2729
- **Target**: Individual users
2830
- **Model**: Freemium
2931

30-
### 3. 💻 [Deep VSCode Extension](PRODUCTS/vscode-extension.md)
32+
### 3. 💻 Deep VSCode Extension
3133
*Native semantic code navigation and editing*
3234
- Deep integration in VSCode's left panel
3335
- Semantic relationship tree navigation
@@ -39,7 +41,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
3941
- **Target**: Developers
4042
- **Model**: Free Open Source
4143

42-
### 4. 🤖 [Deep Telegram Bot](PRODUCTS/telegram-bot.md)
44+
### 4. 🤖 Deep Telegram Bot
4345
*Interactive visualization and AI assistant*
4446
- Telegram bot with expandable React webapp
4547
- On-demand data visualization
@@ -62,7 +64,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
6264
- **Target**: Telegram users
6365
- **Model**: Usage-based (AI requests)
6466

65-
### 5. 📱 [Deep Mobile](PRODUCTS/mobile.md)
67+
### 5. 📱 Deep Mobile
6668
*Your personal semantic companion*
6769
- Voice event capture and processing
6870
- Phone call and messenger integration
@@ -71,7 +73,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
7173
- **Target**: Individual users
7274
- **Model**: Freemium + Premium features
7375

74-
### 6. 🖥️ [Deep Desktop](PRODUCTS/desktop.md)
76+
### 6. 🖥️ Deep Desktop
7577
*Your computer environment semantic controller*
7678
- RobotJS integration for system control
7779
- File system synchronization and monitoring
@@ -82,7 +84,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
8284
- **Target**: Power users
8385
- **Model**: Freemium + Premium features
8486

85-
### 7. 🐧 [Deep OS](PRODUCTS/os.md)
87+
### 7. 🐧 Deep OS
8688
*Standalone semantic operating environment*
8789
- Linux-based bootable system
8890
- Run from USB drive or disk
@@ -99,7 +101,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
99101
- **Target**: Enterprise & Specialized Solutions
100102
- **Model**: Custom Licensing
101103

102-
### 8. 📦 [Deep Box](PRODUCTS/box.md)
104+
### 8. 📦 Deep Box
103105
*Your personal semantic server*
104106
- 30x30 compact design
105107
- 20TB storage
@@ -109,7 +111,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
109111
- **Target**: Privacy-conscious users
110112
- **Model**: Hardware sales + Optional subscription
111113

112-
### 9. 🏢 [Deep Enterprise](PRODUCTS/enterprise.md)
114+
### 9. 🏢 Deep Enterprise
113115
*Your organization's semantic memory*
114116
- On-premises or cloud deployment
115117
- Corporate AI assistant integration
@@ -118,7 +120,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
118120
- **Target**: Organizations
119121
- **Model**: Enterprise licensing
120122

121-
### 10. 🤖 [Deep Skills Platform](PRODUCTS/skills-platform.md)
123+
### 10. 🤖 Deep Skills Platform
122124
*Your universal bot & automation platform*
123125
- Visual skill constructor
124126
- Multi-channel bot deployment
@@ -127,7 +129,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
127129
- **Target**: Businesses
128130
- **Model**: Usage-based + Subscription
129131

130-
### 11. 🔗 [Deep Contract](PRODUCTS/contract.md)
132+
### 11. 🔗 Deep Contract
131133
*Decentralized semantic marketplace*
132134
- Smart contract for associative links (NEUTRON standard)
133135
- Monetization features:
@@ -156,7 +158,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
156158
- **Target**: Web3 developers & Content creators
157159
- **Model**: Transaction fees
158160

159-
### 12. 🌐 [Deep Agent Network](PRODUCTS/agent-network.md)
161+
### 12. 🌐 Deep Agent Network
160162
*Your autonomous agent infrastructure*
161163
- JWT-secured agent communication
162164
- Partial memory synchronization
@@ -165,7 +167,7 @@ Deep aims to revolutionize how we interact with information by creating a unifie
165167
- **Target**: Developers
166168
- **Model**: Usage-based
167169

168-
### 13. 🥽 [Deep VR](PRODUCTS/vr.md)
170+
### 13. 🥽 Deep VR
169171
*Your semantic space in virtual reality*
170172
- AFrame-based semantic visualization
171173
- Neural network-driven spatial organization

src/deep.ts

+27-27
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,33 @@ export class Deep {
10501050
}
10511051
}
10521052

1053+
/**
1054+
* Gets Deep instances that have this instance as a value
1055+
* @returns Deep instance with .call == set of results.
1056+
*/
1057+
get valued() {
1058+
return this.wrap(this.deep.memory.values.many(this));
1059+
}
1060+
1061+
/**
1062+
* Gets Deep instances that have this instance as a type.
1063+
* @returns Deep instance with .call == set of results.
1064+
*/
1065+
get typed() { return this.wrap(this.deep.memory.types.many(this)); }
1066+
1067+
/**
1068+
* Gets Deep instances that have this instance as their 'from' reference
1069+
* @returns Deep instance with .call == set of results.
1070+
*/
1071+
get out() { return this.wrap(this.deep.memory.froms.many(this)); }
1072+
1073+
/**
1074+
* Gets Deep instances that have this instance as their 'to' reference
1075+
* @returns Deep instance with .call == set of results.
1076+
*/
1077+
get in() { return this.wrap(this.deep.memory.tos.many(this)); }
1078+
1079+
10531080
/**
10541081
* Determines the Deep type of a given value
10551082
* @param value - Value to check type of
@@ -1212,33 +1239,6 @@ export class Deep {
12121239
}
12131240
}
12141241
}
1215-
1216-
/**
1217-
* Gets Deep instances that have this instance as a value
1218-
* @returns Deep instance with .call == set of results.
1219-
*/
1220-
get valued() {
1221-
return this.wrap(this.deep.memory.values.many(this));
1222-
}
1223-
1224-
/**
1225-
* Gets Deep instances that have this instance as a type.
1226-
* @returns Deep instance with .call == set of results.
1227-
*/
1228-
get typed() { return this.wrap(this.deep.memory.types.many(this)); }
1229-
1230-
/**
1231-
* Gets Deep instances that have this instance as their 'from' reference
1232-
* @returns Deep instance with .call == set of results.
1233-
*/
1234-
get out() { return this.wrap(this.deep.memory.froms.many(this)); }
1235-
1236-
/**
1237-
* Gets Deep instances that have this instance as their 'to' reference
1238-
* @returns Deep instance with .call == set of results.
1239-
*/
1240-
get in() { return this.wrap(this.deep.memory.tos.many(this)); }
1241-
12421242
/**
12431243
* Checks if this Deep instance is of a specific type
12441244
* @param check - Type to check against

0 commit comments

Comments
 (0)